diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-16 18:16:10 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-16 18:16:10 +0000 |
commit | 907f88f2c2372d22961dd50425522223884fa335 (patch) | |
tree | b0a4b13a87fdbadc27096c5d5a5ff878227b0795 /driver.c | |
parent | c88c80865e8a73e1d76a9435b2b8067d9022c6ff (diff) | |
download | fetchmail-907f88f2c2372d22961dd50425522223884fa335.tar.gz fetchmail-907f88f2c2372d22961dd50425522223884fa335.tar.bz2 fetchmail-907f88f2c2372d22961dd50425522223884fa335.zip |
Attempted fix for qmail dup problem.
svn path=/trunk/; revision=1786
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -327,7 +327,7 @@ struct idlist **xmit_names; /* list of recipient names parsed out */ cp, idp->id); save_str(xmit_names, cp, XMIT_ACCEPT); accept_count++; - break; + goto nomap; } } @@ -349,6 +349,7 @@ struct idlist **xmit_names; /* list of recipient names parsed out */ } atsign[0] = '\0'; map_name(cp, ctl, xmit_names); + nomap:; } } } |