summaryrefslogtreecommitdiff
path: root/usr.bin/sudo/sudo.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-06-05 14:01:17 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-06-05 14:01:17 +0000
commit73091b084d23482ba665f6e69fc121991b50f43a (patch)
treeb85a4bd999c91de9ef12ba05c77592fc031be9f5 /usr.bin/sudo/sudo.h
parent98fefc7adcf3a7ed66947ca63bfadf4b703223cc (diff)
Update to sudo 1.6.3p4
Diffstat (limited to 'usr.bin/sudo/sudo.h')
-rw-r--r--usr.bin/sudo/sudo.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/sudo/sudo.h b/usr.bin/sudo/sudo.h
index eb30390623e..f3c3471a0b5 100644
--- a/usr.bin/sudo/sudo.h
+++ b/usr.bin/sudo/sudo.h
@@ -196,7 +196,7 @@ int sudo_setenv __P((char *, char *));
char *tgetpass __P((const char *, int, int));
int find_path __P((char *, char **));
void check_user __P((void));
-void verify_user __P((char *));
+void verify_user __P((struct passwd *, char *));
int sudoers_lookup __P((int));
void set_perms __P((int, int));
void remove_timestamp __P((int));
@@ -208,8 +208,8 @@ void pass_warn __P((FILE *));
VOID *emalloc __P((size_t));
VOID *erealloc __P((VOID *, size_t));
char *estrdup __P((const char *));
-void easprintf __P((char **, const char *, ...));
-void evasprintf __P((char **, const char *, va_list));
+int easprintf __P((char **, const char *, ...));
+int evasprintf __P((char **, const char *, va_list));
void dump_defaults __P((void));
void dump_auth_methods __P((void));
int lock_file __P((int, int));
@@ -222,6 +222,7 @@ YY_DECL;
/* Only provide extern declarations outside of sudo.c. */
#ifndef _SUDO_SUDO_C
extern struct sudo_user sudo_user;
+extern struct passwd *auth_pw;
extern int Argc;
extern char **Argv;