aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-18 13:04:48 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-18 13:04:48 +0000
commit49f7fa82b95e5f6fe816f842d41af11359dd7342 (patch)
tree4a21d2ebe834fc0a210476afa8bb94eaf21f3877 /lib/ftp.c
parente4cd4cf3f30a49cbc0b789afa03b639aa1796eba (diff)
#if [undefined] => #ifdef [undefined]
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c2
1 files changed, 1 insertions, 1 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) {