From: Jakub Jelinek Date: Mon, 3 Oct 2005 20:54:46 +0000 (+0000) Subject: * nscd/selinux.c (audit_init): Print error string in the failure X-Git-Tag: cvs/fedora-glibc-2_3_90-13~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b96d127915428d1c43d6456799e01f9e70a863b;p=thirdparty%2Fglibc.git * nscd/selinux.c (audit_init): Print error string in the failure message. --- diff --git a/ChangeLog b/ChangeLog index ac0c43b7896..852a87608eb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-03 Jakub Jelinek + + * nscd/selinux.c (audit_init): Print error string in the failure + message. + 2005-10-03 Roland McGrath * sysdeps/powerpc/nofpu: Directory removed, saved in ports repository. diff --git a/nscd/selinux.c b/nscd/selinux.c index 91c1442b597..a15e522958e 100644 --- a/nscd/selinux.c +++ b/nscd/selinux.c @@ -127,7 +127,7 @@ audit_init (void) { audit_fd = audit_open (); if (audit_fd < 0) - dbg_log (_("Failed opening connection to the audit subsystem")); + dbg_log (_("Failed opening connection to the audit subsystem: %m")); } #endif /* HAVE_LIBAUDIT */