From 4e66efa10ee4ea4dc5fcb22e48050ee7fd032187 Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Fri, 6 Jul 2007 08:23:13 +0000 Subject: Relevant BUGIDs: Purpose of commit: bugfix, release Commit summary: --------------- 2007-07-06 Thorsten Kukuk * release version 0.99.8.0 * configure.in: Check for audit_log_acct_message instead of audit_log_user_message. * libpam/pam_audit.c: Use audit_log_acct_message. Based on patch from Mark J Cox . * libpam/Makefile.am: Bump version number of libpam. * modules/pam_umask/pam_umask.c (set_umask): mode_t is 32bit, not 64bit. * xtests/tst-pam_limits1.c: Fix printf arguments. * po/*.po: Merge po files with latest code changes. --- xtests/tst-pam_limits1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xtests') diff --git a/xtests/tst-pam_limits1.c b/xtests/tst-pam_limits1.c index 6331450a..cf025d3d 100644 --- a/xtests/tst-pam_limits1.c +++ b/xtests/tst-pam_limits1.c @@ -132,8 +132,8 @@ main(int argc, char *argv[]) if (rlim.rlim_cur != 1 && rlim.rlim_max != 40) { if (debug) - fprintf (stderr, "pam_limits1: getrlimit failed, soft=%d, hard=%d\n", - rlim.rlim_cur, rlim.rlim_max); + fprintf (stderr, "pam_limits1: getrlimit failed, soft=%u, hard=%u\n", + (unsigned int) rlim.rlim_cur, (unsigned int) rlim.rlim_max); return 1; } -- cgit v1.2.3