summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/auth1.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-03-23 12:02:50 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-03-23 12:02:50 +0000
commit229f4a16d0e16c8cf9286c755a64b7cf9ca28fef (patch)
treedd54ede49342be1c85a0925aa5da0db4dc19e447 /usr.bin/ssh/auth1.c
parenta383f7566aa2b8437bb418c47fa7736092ff26fe (diff)
authctxt is now passed to do_authenticated
Diffstat (limited to 'usr.bin/ssh/auth1.c')
-rw-r--r--usr.bin/ssh/auth1.c5
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);
}