diff options
author | mouring <mouring> | 2001-01-08 06:13:41 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-01-08 06:13:41 +0000 |
commit | d20d975aa5abfb019fdd51a2710b150b1155ab43 (patch) | |
tree | 81f8f48fc78316cac7d1d3e4a24468bea84fcf3f /auth1.c | |
parent | b56b7c625ce3ceb40e03511261e63bbfbd55d994 (diff) | |
download | openssh-d20d975aa5abfb019fdd51a2710b150b1155ab43.tar.gz |
20010108
- (bal) Fixed another typo in cli.c
- (bal) OpenBSD Sync
- markus@cvs.openbsd.org 2001/01/07 21:26:55
[cli.c]
typo
- markus@cvs.openbsd.org 2001/01/07 21:26:55
[cli.c]
missing free, stevesk@pobox.com
- markus@cvs.openbsd.org 2001/01/07 19:06:25
[auth1.c]
missing free, stevesk@pobox.com
- markus@cvs.openbsd.org 2001/01/07 11:28:04
[log-client.c log-server.c log.c readconf.c servconf.c ssh.1
ssh.h sshd.8 sshd.c]
rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE
syslog priority changes:
fatal() LOG_ERR -> LOG_CRIT
log() LOG_INFO -> LOG_NOTICE
Diffstat (limited to 'auth1.c')
-rw-r--r-- | auth1.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.9 2000/12/27 12:34:49 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.10 2001/01/07 19:06:25 markus Exp $"); #ifdef HAVE_OSF_SIA # include <sia.h> @@ -479,6 +479,7 @@ do_authentication() packet_start(SSH_SMSG_SUCCESS); packet_send(); packet_write_wait(); + xfree(user); #ifdef WITH_AIXAUTHENTICATE /* We don't have a pty yet, so just label the line as "ssh" */ |