diff options
author | Kevin Steves <stevesk@pobox.com> | 2001-01-08 21:54:36 +0100 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2001-01-08 21:54:36 +0100 |
commit | 99a0563fd59e1d3e1b79a1a9dd38ce9f6b5059ee (patch) | |
tree | 75554e9f02ddcef0f52aa59bcc4e8926feb3634c /auth1.c | |
parent | 20010109 (diff) | |
download | openssh-99a0563fd59e1d3e1b79a1a9dd38ce9f6b5059ee.tar.xz openssh-99a0563fd59e1d3e1b79a1a9dd38ce9f6b5059ee.zip |
- (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
code.
Diffstat (limited to '')
-rw-r--r-- | auth1.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -479,13 +479,12 @@ 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" */ if (loginsuccess(user,get_canonical_hostname(),"ssh",&aixloginmsg) < 0) aixloginmsg = NULL; #endif /* WITH_AIXAUTHENTICATE */ + xfree(user); /* Perform session preparation. */ do_authenticated(pw); |