diff options
author | 2001-03-23 12:02:49 +0000 | |
---|---|---|
committer | 2001-03-23 12:02:49 +0000 | |
commit | ea4d5e51e555d2538557b64c566b164730a1796e (patch) | |
tree | d30938d1bb45db568390ed3d2e2ab5a0aabf4d5c | |
parent | Compat for OpenSSH with broken Rijndael/AES. ok markus@ (diff) | |
download | wireguard-openbsd-ea4d5e51e555d2538557b64c566b164730a1796e.tar.xz wireguard-openbsd-ea4d5e51e555d2538557b64c566b164730a1796e.zip |
authctxt is now passed to do_authenticated
-rw-r--r-- | usr.bin/ssh/auth1.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/ssh/auth1.c b/usr.bin/ssh/auth1.c index a8221348493..00abdb2297a 100644 --- a/usr.bin/ssh/auth1.c +++ b/usr.bin/ssh/auth1.c @@ -10,7 +10,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.21 2001/03/21 11:43:44 markus Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.22 2001/03/23 12:02:49 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -372,9 +372,6 @@ do_authentication() packet_send(); packet_write_wait(); - xfree(authctxt->user); - xfree(authctxt); - /* Perform session preparation. */ do_authenticated(authctxt); } |