summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-03-22 01:27:35 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-03-22 01:27:35 +0000
commit73ab9ba45d369ef35b0e81590d5d46cc376466c9 (patch)
treed71733dedcdf95447dc81ffb62db5f2f56150dc6 /auth.h
parent2ae18f40a70632eb87eca114980649dae8c476ff (diff)
- provos@cvs.openbsd.org 2002/03/18 01:12:14
[auth.h auth1.c auth2.c sshd.c] have the authentication functions return the authentication context and then do_authenticated; okay millert@
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth.h b/auth.h
index 5f0ed7da4..bdfdf1c54 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.32 2002/03/17 20:25:56 provos Exp $ */ 1/* $OpenBSD: auth.h,v 1.33 2002/03/18 01:12:14 provos Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -121,8 +121,8 @@ void krb5_cleanup_proc(void *authctxt);
121#include "auth-pam.h" 121#include "auth-pam.h"
122#include "auth2-pam.h" 122#include "auth2-pam.h"
123 123
124void do_authentication(void); 124Authctxt *do_authentication(void);
125void do_authentication2(void); 125Authctxt *do_authentication2(void);
126 126
127Authctxt *authctxt_new(void); 127Authctxt *authctxt_new(void);
128void auth_log(Authctxt *, int, char *, char *); 128void auth_log(Authctxt *, int, char *, char *);