diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-04-01 22:09:07 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-04-01 22:09:07 +0000 |
commit | 16102f25592f742f0dc8bed7bb351dec831d133f (patch) | |
tree | a55663d405e30dcce3be07d929d1cfea4009c92d | |
parent | 8c7217e7c185a197bc2e56b55e02be67172a376c (diff) | |
download | fetchmail-16102f25592f742f0dc8bed7bb351dec831d133f.tar.gz fetchmail-16102f25592f742f0dc8bed7bb351dec831d133f.tar.bz2 fetchmail-16102f25592f742f0dc8bed7bb351dec831d133f.zip |
Robert deBath's fix.
svn path=/trunk/; revision=941
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | options.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -27,6 +27,8 @@ bugs -- * George Sipe sent a fix for the --monitor code. +* --nowrewrite was a no-op. Fixed. + There are 261 people on the fetchmail-friends list. ------------------------------------------------------------------------------ @@ -245,7 +245,7 @@ struct query *ctl; /* option record to be initialized */ break; case 'n': case LA_NOREWRITE: - ctl->rewrite = FLAG_TRUE; + ctl->rewrite = FLAG_FALSE; break; case 'l': case LA_LIMIT: |