diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-03-13 03:50:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-03-13 03:50:54 +0000 |
commit | 996083bee5b585d53f8232c049ecc23a2c01cac5 (patch) | |
tree | debe1511546cbe20157afc2cdba69afb0233706d /driver.c | |
parent | ceaef31ff6860e0904e9d738e4bea2860980e439 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |