aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-12-03 16:38:14 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-12-03 16:38:14 +0000
commitc5c722ef4afede13abe9994a878fedb09a2c7291 (patch)
tree446104687104dec28828f44a8fbbf8ba466ed938 /driver.c
parent87c7f6d0c3bb8949a450cfbed912cb27cb380379 (diff)
downloadfetchmail-c5c722ef4afede13abe9994a878fedb09a2c7291.tar.gz
fetchmail-c5c722ef4afede13abe9994a878fedb09a2c7291.tar.bz2
fetchmail-c5c722ef4afede13abe9994a878fedb09a2c7291.zip
Correct #ifdef.
svn path=/trunk/; revision=1559
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 7607004b..347f66c6 100644
--- a/driver.c
+++ b/driver.c
@@ -1214,7 +1214,7 @@ int num; /* index of message */
buf[1] = '\0';
time(&now);
-#ifdef STRFTIME
+#ifdef HAVE_STRFTIME
/* conform to RFC822 */
strftime(buf, sizeof(buf), "%a, %d b %Y %H:%M:%S %Z\n", localtime(&now));
#else