diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-16 23:56:59 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-16 23:56:59 +0000 |
commit | b1d3b05365c707d72735fe6475033a5b378dd8b5 (patch) | |
tree | 23cb28fd0f1b5e39f92a9b088fb1225bb7b42529 | |
parent | 2a7c2c8a122110bb09ce2019bca7a9a78d7846ff (diff) | |
download | fetchmail-b1d3b05365c707d72735fe6475033a5b378dd8b5.tar.gz fetchmail-b1d3b05365c707d72735fe6475033a5b378dd8b5.tar.bz2 fetchmail-b1d3b05365c707d72735fe6475033a5b378dd8b5.zip |
First post-3.5 changes.
svn path=/trunk/; revision=890
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | driver.c | 2 |
3 files changed, 16 insertions, 1 deletions
@@ -5,6 +5,10 @@ If you have installed binaries (e.g. from an RPM) you can skip to step 4. If you are a Linux system packager, be aware that the build process generates an RPM spec file at fetchmail.spec. +The Frequently Asked Questions list, included as the file FAQ in this +distributions, answers the most common questions about configuring and +running fetchmail. + 1. CONFIGURE Installing fetchmail is easy. From within this directory, type: @@ -1,6 +1,17 @@ Release Notes: ------------------------------------------------------------------------------ +fetchmail-3.6 () + +features -- + +* New Makefile production to generate an RPM. + +bugs -- + +* Yet another fix to the password-shrouding logic. + +------------------------------------------------------------------------------ fetchmail-3.5 (Sat Feb 15 15:19:36 EST 1997) Note: The .poprc compatibility hack that allows your first user declaration @@ -1576,7 +1576,7 @@ va_dcl *cp++ = '*'; while (*sp) *cp++ = *sp++; - *sp = '\0'; + *cp = '\0'; } buf[strlen(buf)-1] = '\0'; error(0, 0, "%s> %s", protocol->name, buf); |