summaryrefslogtreecommitdiff
path: root/auth-pam.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-01-19 15:46:38 +1100
committerDamien Miller <djm@mindrot.org>2001-01-19 15:46:38 +1100
commit22e22bf9bab94862c860ad4ed652f308dda63f81 (patch)
treeb4d1a83f4ea81c3b1c82a3a5a28de21bbd5d4c2c /auth-pam.h
parentf569241db2e79b0bd7d1be6e288f2bd25e9c7ab4 (diff)
- (djm) Merge patch from Tim Waugh (via Nalin Dahyabhai <nalin@redhat.com>)
to fix NULL pointer deref and fake authloop breakage in PAM code.
Diffstat (limited to 'auth-pam.h')
-rw-r--r--auth-pam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth-pam.h b/auth-pam.h
index ca261afeb..68d446592 100644
--- a/auth-pam.h
+++ b/auth-pam.h
@@ -3,7 +3,7 @@
3 3
4#include <pwd.h> /* For struct passwd */ 4#include <pwd.h> /* For struct passwd */
5 5
6void start_pam(struct passwd *pw); 6void start_pam(const char *user);
7void finish_pam(void); 7void finish_pam(void);
8int auth_pam_password(struct passwd *pw, const char *password); 8int auth_pam_password(struct passwd *pw, const char *password);
9char **fetch_pam_environment(void); 9char **fetch_pam_environment(void);