diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-07-24 15:47:40 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-07-24 15:47:40 +0000 |
commit | 65b0aeaecd75e081993c48db2837958073185165 (patch) | |
tree | e65fd19ffeaa53bb0212a5cf49bd5671e15cc954 /libpam/pam_auth.c | |
parent | c938ec2c5c0a796c4a69b8946884a49e266bdea2 (diff) | |
download | pam-65b0aeaecd75e081993c48db2837958073185165.tar.gz pam-65b0aeaecd75e081993c48db2837958073185165.tar.bz2 pam-65b0aeaecd75e081993c48db2837958073185165.zip |
Relevant BUGIDs:
Purpose of commit: bugfixes
Commit summary:
---------------
2006-07-24 Thorsten Kukuk <kukuk@thkukuk.de>
* doc/adg/Makefile.am: Add uninstall and distclean rules.
* doc/mwg/Makefile.am: Likewise.
* doc/sag/Makefile.am: Likewise.
2006-07-08 Daniel Richard G. <skunk@iskunk.org>
* conf/pam_conv1/Makefile.am: Fix rules for lex and yacc files.
* conf/pam_conv1/pam_conv.lex: Rename to ...
* conf/pam_conv1/pam_conv_l.l: ... this.
* conf/pam_conv1/pam_conv.y: Rename to ...
* conf/pam_conv1/pam_conv_y.y: ... this.
* configure.in: Add AC_HELP_STRING()s to various AC_ARG_ENABLE()
calls.
* doc/Makefile.am: Fix rule to install index.html.
* doc/adg/Makefile.am: Fix test usage.
* doc/mwg/Makefile.am: Likewise.
* doc/sag/Makefile.am: Likewise.
* doc/specs/Makefile.am: Fix rules for lex and yacc files.
* specs/parse.lex: Rename to ...
* doc/specs/parse_l.l: ... this.
* doc/specs/parse.y: Rename to ...
* doc/specs/parse_y.y: ... this.
* libpam/pam_account.c: Fix #if vs. #ifdef.
* libpam/pam_audit.c: Likewise.
* libpam/pam_auth.c: Likewise.
* libpam/pam_password.c: Likewise.
* libpam/pam_private.h: Likewise.
* libpam/pam_session.c: Likewise.
* libpam/pam_start.c: Likewise.
* libpam/pam_static.c: Fix "empty sourcefile" warning.
* modules/pam_limits/pam_limits.c: Check for __linux, too.
* modules/pam_userdb/Makefile.am: Don't run test if no
libdb available.
* tests/tst-dlopen.c: Include config.h.
Diffstat (limited to 'libpam/pam_auth.c')
-rw-r--r-- | libpam/pam_auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpam/pam_auth.c b/libpam/pam_auth.c index 772e5edf..5984fa59 100644 --- a/libpam/pam_auth.c +++ b/libpam/pam_auth.c @@ -45,7 +45,7 @@ int pam_authenticate(pam_handle_t *pamh, int flags) prelude_send_alert(pamh, retval); #endif -#if HAVE_LIBAUDIT +#ifdef HAVE_LIBAUDIT retval = _pam_auditlog(pamh, PAM_AUTHENTICATE, retval, flags); #endif @@ -71,7 +71,7 @@ int pam_setcred(pam_handle_t *pamh, int flags) retval = _pam_dispatch(pamh, flags, PAM_SETCRED); -#if HAVE_LIBAUDIT +#ifdef HAVE_LIBAUDIT retval = _pam_auditlog(pamh, PAM_SETCRED, retval, flags); #endif |