diff options
author | Sebastien Tricaud <toady@gscore.org> | 2005-03-29 20:41:18 +0000 |
---|---|---|
committer | Sebastien Tricaud <toady@gscore.org> | 2005-03-29 20:41:18 +0000 |
commit | f2d8e740a26f7fad4e32584d86d489fccbc767da (patch) | |
tree | 3808f0fce019720067a8a7d2305cb425fe5c8169 /libpam/pam_auth.c | |
parent | ba82d67e1db5a6a793f6564f926e6a0f8b17f782 (diff) | |
download | pam-f2d8e740a26f7fad4e32584d86d489fccbc767da.tar.gz pam-f2d8e740a26f7fad4e32584d86d489fccbc767da.tar.bz2 pam-f2d8e740a26f7fad4e32584d86d489fccbc767da.zip |
prelude ids support
Diffstat (limited to 'libpam/pam_auth.c')
-rw-r--r-- | libpam/pam_auth.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpam/pam_auth.c b/libpam/pam_auth.c index c945ebfc..1e7bc6e7 100644 --- a/libpam/pam_auth.c +++ b/libpam/pam_auth.c @@ -6,6 +6,7 @@ */ #include "pam_private.h" +#include "pam_prelude.h" #include <stdio.h> #include <stdlib.h> @@ -40,6 +41,10 @@ int pam_authenticate(pam_handle_t *pamh, int flags) D(("will resume when ready")); } +#ifdef PRELUDE + prelude_send_alert(pamh, retval); +#endif + return retval; } |