diff options
author | Tomas Mraz <tm@t8m.info> | 2008-12-17 14:27:24 +0000 |
---|---|---|
committer | Tomas Mraz <tm@t8m.info> | 2008-12-17 14:27:24 +0000 |
commit | 2fe275aed5c0c285781e6487242a9e4a13071e4f (patch) | |
tree | 201496523aea95c3151da45d5a1898aa4fd466b6 /configure.in | |
parent | 96377420e795eaa52f3d8017dfec557f8c5948a0 (diff) | |
download | pam-2fe275aed5c0c285781e6487242a9e4a13071e4f.tar.gz pam-2fe275aed5c0c285781e6487242a9e4a13071e4f.tar.bz2 pam-2fe275aed5c0c285781e6487242a9e4a13071e4f.zip |
Relevant BUGIDs:
Purpose of commit: new feature
Commit summary:
---------------
2008-12-17 Tomas Mraz <t8m@centrum.cz>
* modules/pam_tty_audit/pam_tty_audit.c (pam_sm_open_session): Do
not abort on unknown option. Avoid double free of old_status.
(pam_sm_close_session): Use LOG_DEBUG for restored status message.
* configure.in: Test for getseuser().
* modules/pam_selinux/pam_selinux.c (pam_sm_open_session): Call getseuser()
instead of getseuserbyname() if the function is available.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.in b/configure.in index ff14401c..5e692dee 100644 --- a/configure.in +++ b/configure.in @@ -428,6 +428,7 @@ if test ! -z "$LIBSELINUX" ; then BACKUP_LIBS=$LIBS LIBS="$LIBS $LIBSELINUX" AC_CHECK_FUNCS(setkeycreatecon) + AC_CHECK_FUNCS(getseuser) LIBS=$BACKUP_LIBS fi |