Relevant BUGIDs:

Purpose of commit: bugfix

Commit summary:
---------------

Solaris does not have LOG_AUTHPRIV:

2005-12-19  Thorsten Kukuk  <kukuk@thkukuk.de>

        * libpam/pam_syslog.c: Define LOG_AUTHPRIV as LOG_AUTH on Solaris.
        Reported by Charles_H_Bedford@nbc.gov.
This commit is contained in:
Thorsten Kukuk 2005-12-19 07:41:50 +00:00
parent 1d77132df8
commit 4e3db2001a
2 changed files with 7 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2005-12-19 Thorsten Kukuk <kukuk@thkukuk.de>
* libpam/pam_syslog.c: Define LOG_AUTHPRIV as LOG_AUTH on Solaris.
Reported by Charles_H_Bedford@nbc.gov.
* modules/pam_time/pam_time.c (check_account): Implement
support for netgroups.

View File

@ -45,6 +45,10 @@
#include "pam_private.h"
#ifndef LOG_AUTHPRIV
#define LOG_AUTHPRIV LOG_AUTH
#endif
static const char *
_pam_choice2str (int choice)
{