diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | auth1.c | 5 |
2 files changed, 5 insertions, 5 deletions
@@ -4,6 +4,9 @@ | |||
4 | - djm@cvs.openbsd.org 2001/03/23 11:04:07 | 4 | - djm@cvs.openbsd.org 2001/03/23 11:04:07 |
5 | [compat.c compat.h sshconnect2.c sshd.c] | 5 | [compat.c compat.h sshconnect2.c sshd.c] |
6 | Compat for OpenSSH with broken Rijndael/AES. ok markus@ | 6 | Compat for OpenSSH with broken Rijndael/AES. ok markus@ |
7 | - markus@cvs.openbsd.org 2001/03/23 12:02:49 | ||
8 | [auth1.c] | ||
9 | authctxt is now passed to do_authenticated | ||
7 | 10 | ||
8 | 20010323 | 11 | 20010323 |
9 | - OpenBSD CVS Sync | 12 | - OpenBSD CVS Sync |
@@ -4695,4 +4698,4 @@ | |||
4695 | - Wrote replacements for strlcpy and mkdtemp | 4698 | - Wrote replacements for strlcpy and mkdtemp |
4696 | - Released 1.0pre1 | 4699 | - Released 1.0pre1 |
4697 | 4700 | ||
4698 | $Id: ChangeLog,v 1.1011 2001/03/24 00:35:19 mouring Exp $ | 4701 | $Id: ChangeLog,v 1.1012 2001/03/24 00:37:59 mouring Exp $ |
@@ -10,7 +10,7 @@ | |||
10 | */ | 10 | */ |
11 | 11 | ||
12 | #include "includes.h" | 12 | #include "includes.h" |
13 | RCSID("$OpenBSD: auth1.c,v 1.21 2001/03/21 11:43:44 markus Exp $"); | 13 | RCSID("$OpenBSD: auth1.c,v 1.22 2001/03/23 12:02:49 markus Exp $"); |
14 | 14 | ||
15 | #include "xmalloc.h" | 15 | #include "xmalloc.h" |
16 | #include "rsa.h" | 16 | #include "rsa.h" |
@@ -430,9 +430,6 @@ do_authentication() | |||
430 | aixloginmsg = NULL; | 430 | aixloginmsg = NULL; |
431 | #endif /* WITH_AIXAUTHENTICATE */ | 431 | #endif /* WITH_AIXAUTHENTICATE */ |
432 | 432 | ||
433 | xfree(authctxt->user); | ||
434 | xfree(authctxt); | ||
435 | |||
436 | /* Perform session preparation. */ | 433 | /* Perform session preparation. */ |
437 | do_authenticated(authctxt); | 434 | do_authenticated(authctxt); |
438 | } | 435 | } |