diff options
author | 2000-11-19 20:12:10 +0000 | |
---|---|---|
committer | 2000-11-19 20:12:10 +0000 | |
commit | 6bedce01c7be82946055558d867c44836219bd3d (patch) | |
tree | 6dfda043473b5c69d335a477c1091b9abe5b2810 | |
parent | Handle more manpages oddities: (diff) | |
download | wireguard-openbsd-6bedce01c7be82946055558d867c44836219bd3d.tar.xz wireguard-openbsd-6bedce01c7be82946055558d867c44836219bd3d.zip |
Remove prototypes for old BSD auth functions. New ones will live in
bsd_auth.h when BSD authentication is committed.
-rw-r--r-- | include/login_cap.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/include/login_cap.h b/include/login_cap.h index a63112f944e..cacf9200c72 100644 --- a/include/login_cap.h +++ b/include/login_cap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: login_cap.h,v 1.1 2000/08/20 18:37:20 millert Exp $ */ +/* $OpenBSD: login_cap.h,v 1.2 2000/11/19 20:12:10 millert Exp $ */ /*- * Copyright (c) 1995,1997 Berkeley Software Design, Inc. All rights reserved. @@ -99,22 +99,4 @@ int secure_path __P((char *)); int setclasscontext __P((char *, u_int)); int setusercontext __P((login_cap_t *, struct passwd *, uid_t, u_int)); -/* - * Routines for authentication - * Most of these will be deprecated in a future release - */ -int auth_approve __P((login_cap_t *, char *, char *)); -int auth_cat __P((char *)); -int auth_check __P((char *, char *, char *, char *, int *)); -void auth_checknologin __P((login_cap_t *)); -void auth_env __P((void)); -char *auth_mkvalue __P((char *)); -int auth_response __P((char *, char *, char *, char *, int *, char *, char *)); -void auth_rmfiles __P((void)); -int auth_scan __P((int)); -int auth_script __P((char *, ...)); -int auth_script_data __P((char *, int, char *, ...)); -char *auth_value __P((char *)); -int auth_setopt __P((char *, char *)); -void auth_clropts __P((void)); __END_DECLS |