diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 22:01:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-20 22:01:50 +0000 |
commit | a5b09204067bc42cacacadc26840f7b15889a527 (patch) | |
tree | 10aed3c8a6580927a1675ec7b9e3b546944489b2 | |
parent | 2c1ff9e0660fa28b16bcc5ed02123ea51e254687 (diff) | |
download | fetchmail-a5b09204067bc42cacacadc26840f7b15889a527.tar.gz fetchmail-a5b09204067bc42cacacadc26840f7b15889a527.tar.bz2 fetchmail-a5b09204067bc42cacacadc26840f7b15889a527.zip |
Core-dump fix.
svn path=/trunk/; revision=2007
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | options.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,10 @@ Release Notes: +fetchmail-4.5.4 (): +* Fixed processing of --antispam option. + +There are 265 people on fetchmail-friends and 249 on fetchmail-announce. + fetchmail-4.5.3 (Mon Jul 20 15:02:08 EDT 1998): * Minor fixes to the GSSAPI code. Seems to work with stock UW IMAP now. * Fetchmail running as root now sends misaddressed multidrop mail to @@ -426,6 +426,7 @@ struct query *ctl; /* option record to be initialized */ break; case 'Z': case LA_ANTISPAM: + buf = xmalloc(strlen(optarg)); strcpy(buf, optarg); cp = strtok(buf, ","); do { |