aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/ftp.c2
-rw-r--r--lib/netrc.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 29c0cb8bb..6b142dd8a 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -358,7 +358,7 @@ int Curl_GetFTPResponse(char *buf,
if(!error)
code = atoi(buf);
-#if KRB4
+#ifdef KRB4
/* handle the security-oriented responses 6xx ***/
/* FIXME: some errorchecking perhaps... ***/
switch(code) {
diff --git a/lib/netrc.c b/lib/netrc.c
index 8b6844825..f50bf5bad 100644
--- a/lib/netrc.c
+++ b/lib/netrc.c
@@ -157,7 +157,7 @@ int Curl_parsenetrc(char *host,
}
else if(state_password) {
strncpy(password, tok, PASSWORDSIZE-1);
-#if _NETRC_DEBUG
+#ifdef _NETRC_DEBUG
printf("PASSWORD: %s\n", password);
#endif
state_password=0;