diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-01-24 09:42:46 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-01-24 09:42:46 +0000 |
commit | 83a30823cd47902dc33ae3e46d5eb09f39f7eb27 (patch) | |
tree | 7307711303e498848924c1d3f37cc7f31b240d43 | |
parent | 9ed169585185307e13dec9c20c944de191bb6df6 (diff) | |
download | pam-83a30823cd47902dc33ae3e46d5eb09f39f7eb27.tar.gz pam-83a30823cd47902dc33ae3e46d5eb09f39f7eb27.tar.bz2 pam-83a30823cd47902dc33ae3e46d5eb09f39f7eb27.zip |
Relevant BUGIDs:
Purpose of commit: bugfix
Commit summary:
---------------
2006-01-24 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_debug/pam_debug.c: Fix name of pam_module struct.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | modules/pam_debug/pam_debug.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2006-01-24 Thorsten Kukuk <kukuk@thkukuk.de> + + * modules/pam_debug/pam_debug.c: Fix name of pam_module struct. + 2006-01-22 Thorsten Kukuk <kukuk@thkukuk.de> * modules/pam_succeed_if/pam_succeed_if.c: Add support for diff --git a/modules/pam_debug/pam_debug.c b/modules/pam_debug/pam_debug.c index 45edc82e..a65d1bf2 100644 --- a/modules/pam_debug/pam_debug.c +++ b/modules/pam_debug/pam_debug.c @@ -154,7 +154,7 @@ int pam_sm_close_session(pam_handle_t *pamh, int flags UNUSED, /* static module data */ -struct pam_module _pam_permit_modstruct = { +struct pam_module _pam_debug_modstruct = { "pam_debug", pam_sm_authenticate, pam_sm_setcred, |