diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-03 18:03:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-03 18:03:32 +0000 |
commit | 1eac3f01f7ceac456c25ff176fe8ebce870eb4cb (patch) | |
tree | 5e7d8e1f19e7c74ea6260bef4d5f1358ce4f3aa1 /driver.c | |
parent | 2be1639518a932a1d42989df6b1aae2ab9fc7d0d (diff) | |
download | fetchmail-1eac3f01f7ceac456c25ff176fe8ebce870eb4cb.tar.gz fetchmail-1eac3f01f7ceac456c25ff176fe8ebce870eb4cb.tar.bz2 fetchmail-1eac3f01f7ceac456c25ff176fe8ebce870eb4cb.zip |
Fix stripcr and password-stripping.
svn path=/trunk/; revision=857
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1479,7 +1479,7 @@ va_dcl *cp++ = '*'; while (*sp) *cp++ = *sp++; - *sp = '\0'; + *cp = '\0'; } buf[strlen(buf)-2] = '\0'; error(0, 0, "%s> %s", protocol->name, buf); |