- (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
code.
This commit is contained in:
parent
4b27a5377e
commit
99a0563fd5
|
@ -1,5 +1,7 @@
|
||||||
20010109
|
20010109
|
||||||
- (bal) Resync CVS ID of cli.c
|
- (bal) Resync CVS ID of cli.c
|
||||||
|
- (stevesk) auth1.c: free should be after WITH_AIXAUTHENTICATE
|
||||||
|
code.
|
||||||
|
|
||||||
20010108
|
20010108
|
||||||
- (bal) Fixed another typo in cli.c
|
- (bal) Fixed another typo in cli.c
|
||||||
|
|
3
auth1.c
3
auth1.c
|
@ -479,13 +479,12 @@ do_authentication()
|
||||||
packet_start(SSH_SMSG_SUCCESS);
|
packet_start(SSH_SMSG_SUCCESS);
|
||||||
packet_send();
|
packet_send();
|
||||||
packet_write_wait();
|
packet_write_wait();
|
||||||
xfree(user);
|
|
||||||
|
|
||||||
#ifdef WITH_AIXAUTHENTICATE
|
#ifdef WITH_AIXAUTHENTICATE
|
||||||
/* We don't have a pty yet, so just label the line as "ssh" */
|
/* We don't have a pty yet, so just label the line as "ssh" */
|
||||||
if (loginsuccess(user,get_canonical_hostname(),"ssh",&aixloginmsg) < 0)
|
if (loginsuccess(user,get_canonical_hostname(),"ssh",&aixloginmsg) < 0)
|
||||||
aixloginmsg = NULL;
|
aixloginmsg = NULL;
|
||||||
#endif /* WITH_AIXAUTHENTICATE */
|
#endif /* WITH_AIXAUTHENTICATE */
|
||||||
|
xfree(user);
|
||||||
|
|
||||||
/* Perform session preparation. */
|
/* Perform session preparation. */
|
||||||
do_authenticated(pw);
|
do_authenticated(pw);
|
||||||
|
|
Loading…
Reference in New Issue