aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-03-13 03:50:54 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-03-13 03:50:54 +0000
commit996083bee5b585d53f8232c049ecc23a2c01cac5 (patch)
treedebe1511546cbe20157afc2cdba69afb0233706d /driver.c
parentceaef31ff6860e0904e9d738e4bea2860980e439 (diff)
downloadfetchmail-996083bee5b585d53f8232c049ecc23a2c01cac5.tar.gz
fetchmail-996083bee5b585d53f8232c049ecc23a2c01cac5.tar.bz2
fetchmail-996083bee5b585d53f8232c049ecc23a2c01cac5.zip
True caseblinding.
svn path=/trunk/; revision=1697
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 dae0493b..be85b040 100644
--- a/driver.c
+++ b/driver.c
@@ -103,7 +103,7 @@ static jmp_buf restart;
char tag[TAGLEN];
static int tagnum;
-#define GENSYM (sprintf(tag, "a%04d", ++tagnum % TAGMOD), tag)
+#define GENSYM (sprintf(tag, "A%04d", ++tagnum % TAGMOD), tag)
static char *shroud; /* string to shroud in debug output, if non-NULL */
static int mytimeout; /* value of nonreponse timeout */