diff options
author | djm <djm> | 2003-05-10 09:28:02 +0000 |
---|---|---|
committer | djm <djm> | 2003-05-10 09:28:02 +0000 |
commit | e4bb690dfae46e4fd244721923b29abdf8123115 (patch) | |
tree | e6ad91cd72b7f82b0b4835c82de740ff6845b9b0 /auth.h | |
parent | caa0152d3bc5e6a658c862a3555318d4f79a58b4 (diff) | |
download | openssh-e4bb690dfae46e4fd244721923b29abdf8123115.tar.gz |
- (djm) Merge FreeBSD PAM code: replaces PAM password auth kludge withAFTER_FREEBSD_PAM_MERGE
proper challenge-response module
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,5 @@ /* $OpenBSD: auth.h,v 1.41 2002/09/26 11:38:43 markus Exp $ */ +/* $FreeBSD: src/crypto/openssh/auth.h,v 1.10 2003/03/31 13:45:36 des Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -133,7 +134,6 @@ void krb5_cleanup_proc(void *authctxt); #endif /* KRB5 */ #include "auth-pam.h" -#include "auth2-pam.h" Authctxt *do_authentication(void); Authctxt *do_authentication2(void); @@ -159,6 +159,7 @@ struct passwd * getpwnamallow(const char *user); char *get_challenge(Authctxt *); int verify_response(Authctxt *, const char *); +void abandon_challenge_response(Authctxt *); struct passwd * auth_get_user(void); |