diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-08-06 00:50:12 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-08-06 00:50:12 +0000 |
commit | a498e29130c0951f4162bc7db3603987d69d59da (patch) | |
tree | 612294779af0ba85c65bba213ab500211b216038 | |
parent | fd9a4d73814e6d033f332027477b09f6f2ebbe83 (diff) | |
download | fetchmail-a498e29130c0951f4162bc7db3603987d69d59da.tar.gz fetchmail-a498e29130c0951f4162bc7db3603987d69d59da.tar.bz2 fetchmail-a498e29130c0951f4162bc7db3603987d69d59da.zip |
Fix UIDL option processing.
svn path=/trunk/; revision=1233
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | rcfile_y.y | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,7 @@ fetchmail-4.0.7 () * Fixed a minor bug in handling of DNS errors in multidrop mode. * Added a `postconnect' analogous to `preconnect'. * Make `interval' count polls skipped because of interface or monitor option. +* Fix UIDL option processing. There are 258 people on the fetchmail-friends list. @@ -413,6 +413,7 @@ static void record_current(void) FLAG_FORCE(server.envelope); FLAG_FORCE(server.skip); FLAG_FORCE(server.dns); + FLAG_FORCE(server.uidl); #ifdef linux FLAG_FORCE(server.interface); @@ -466,6 +467,7 @@ void optmerge(struct query *h2, struct query *h1) FLAG_MERGE(server.envelope); FLAG_MERGE(server.skip); FLAG_MERGE(server.dns); + FLAG_MERGE(server.uidl); #ifdef linux FLAG_MERGE(server.interface); |