diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 13:04:48 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-01-18 13:04:48 +0000 |
commit | 49f7fa82b95e5f6fe816f842d41af11359dd7342 (patch) | |
tree | 4a21d2ebe834fc0a210476afa8bb94eaf21f3877 /lib/netrc.c | |
parent | e4cd4cf3f30a49cbc0b789afa03b639aa1796eba (diff) | |
download | curl-49f7fa82b95e5f6fe816f842d41af11359dd7342.tar.gz |
#if [undefined] => #ifdef [undefined]
Diffstat (limited to 'lib/netrc.c')
-rw-r--r-- | lib/netrc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |