diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | uid.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -21,6 +21,8 @@ bugs -- * Various error-logging fixes by Dave Bodenstab. +* Fix parsing bug that broke UIDL-processing code. + ------------------------------------------------------------------------------ fetchmail-3.6 (Mon Feb 17 00:19:55 EST 1997) @@ -80,7 +80,7 @@ void initialize_saved_lists(struct query *hostlist, const char *idfile) while (fgets(buf, POPBUFSIZE, tmpfp) != (char *)NULL) { /* possible lossage here with very old versions of sscanf(3)... */ - if ((st = sscanf(buf, "%[^@]@%s %s\n", host, user, id)) == 3) + if ((st = sscanf(buf, "%[^@]@%s %s\n", user, host, id)) == 3) { for (ctl = hostlist; ctl; ctl = ctl->next) { |