diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | driver.c | 2 | ||||
-rw-r--r-- | rcfile_y.y | 1 |
3 files changed, 5 insertions, 1 deletions
@@ -2,6 +2,9 @@ ------------------------------------------------------------------------------ +pl 3.3.2 (Mon Feb 3 12:59:33 EST 1997): +* Minor fixes to stripcr and password-shrouding logic. + pl 3.3.1 (Sun Feb 2 02:17:07 EST 1997): * Fix incorrect stripcr processing * Unapply a patch that broke error logging to files. @@ -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); @@ -301,6 +301,7 @@ static void prc_reset(void) save = current.server; memset(¤t, '\0', sizeof(current)); + current.stripcr = -1; current.server = save; } |