diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2019-01-19 21:38:25 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2019-01-19 21:38:25 +0000 |
commit | e3da49ad1ac52ecfa9d9cba7fda92773ea1205dd (patch) | |
tree | 13cad7bb67cc9980b6ba4a1dcac4b5797549027f /usr.bin/ssh/auth.h | |
parent | 29b5378391a7131edbb8e035916e5b894e8734c9 (diff) |
convert auth2.c to new packet API
Diffstat (limited to 'usr.bin/ssh/auth.h')
-rw-r--r-- | usr.bin/ssh/auth.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.h b/usr.bin/ssh/auth.h index db00668331d..86a7784d231 100644 --- a/usr.bin/ssh/auth.h +++ b/usr.bin/ssh/auth.h @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.h,v 1.96 2018/04/10 00:10:49 djm Exp $ */ +/* $OpenBSD: auth.h,v 1.97 2019/01/19 21:38:24 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -147,7 +147,7 @@ int auth_krb5_password(Authctxt *authctxt, const char *password); void krb5_cleanup_proc(Authctxt *authctxt); #endif /* KRB5 */ -void do_authentication2(Authctxt *); +void do_authentication2(struct ssh *); void auth_log(Authctxt *, int, int, const char *, const char *); void auth_maxtries_exceeded(Authctxt *) __attribute__((noreturn)); |