=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/bsd_auth.h,v retrieving revision 1.8 retrieving revision 1.9 diff -c -r1.8 -r1.9 *** src/include/bsd_auth.h 2002/08/30 08:50:01 1.8 --- src/include/bsd_auth.h 2006/01/06 18:53:04 1.9 *************** *** 1,4 **** ! /* $OpenBSD: bsd_auth.h,v 1.8 2002/08/30 08:50:01 espie Exp $ */ /*- * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved. --- 1,4 ---- ! /* $OpenBSD: bsd_auth.h,v 1.9 2006/01/06 18:53:04 millert Exp $ */ /*- * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved. *************** *** 37,42 **** --- 37,44 ---- #ifndef _BSD_AUTH_H_ #define _BSD_AUTH_H_ + #include /* for __va_list */ + typedef struct auth_session_t auth_session_t; typedef enum { *************** *** 84,90 **** int auth_setdata(auth_session_t *, void *, size_t); int auth_setoption(auth_session_t *, char *, char *); int auth_setpwd(auth_session_t *, struct passwd *pwd); ! void auth_set_va_list(auth_session_t *, _BSD_VA_LIST_); struct passwd *auth_getpwd(auth_session_t *); --- 86,92 ---- int auth_setdata(auth_session_t *, void *, size_t); int auth_setoption(auth_session_t *, char *, char *); int auth_setpwd(auth_session_t *, struct passwd *pwd); ! void auth_set_va_list(auth_session_t *, __va_list); struct passwd *auth_getpwd(auth_session_t *);