summaryrefslogtreecommitdiffstats
path: root/doc/ssl/SSL_get_session.pod
AgeCommit message (Expand)Author
2016-01-27Doc fixes suggested by Claus AssmannViktor Dukhovni
2015-08-21Fix L<> content in manpagesRich Salz
2013-06-12Document updates from wiki.Matt Caswell
2005-03-30update docs (recent constification)Nils Larsch
2001-11-19Clarify reference count handling/removal of sessionLutz Jänicke
2001-10-12Update information as a partial response to the postLutz Jänicke
2001-02-13Finish first round of session cache documentation.Lutz Jänicke
2000-09-16ispell and some other nit-pickingUlf Möller
2000-09-14Add a number of documentation files, mostly for SSL routines, but alsoRichard Levitte
/div>
[auth2.c auth2-chall.c auth.h] add auth2_challenge_stop(), simplifies cleanup of kbd-int sessions, fixes memleak.
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/auth2.c b/auth2.c
index 3cfba7a6..29bbdf4f 100644
--- a/auth2.c
+++ b/auth2.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth2.c,v 1.74 2001/12/05 03:56:39 itojun Exp $");
+RCSID("$OpenBSD: auth2.c,v 1.75 2001/12/09 18:45:56 markus Exp $");
#include <openssl/evp.h>
@@ -220,14 +220,8 @@ input_userauth_request(int type, int plen, void *ctxt)
authctxt->user, authctxt->service, user, service);
}
/* reset state */
- dispatch_set(SSH2_MSG_USERAUTH_INFO_RESPONSE, &protocol_error);
+ auth2_challenge_stop(authctxt);
authctxt->postponed = 0;
-#ifdef BSD_AUTH
- if (authctxt->as) {
- auth_close(authctxt->as);
- authctxt->as = NULL;
- }
-#endif
/* try to authenticate user */
m = authmethod_lookup(method);