summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-10-19 15:11:10 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-10-19 16:02:47 -0400
commit8715fcb39bd8086cb59d978e9a6ae18aaae1f864 (patch)
treefc34126c677e1576c00f50a82f4da9872b435054 /src/util
parent7051a30300d12163e890e4ec4b9a765567679a8b (diff)
downloadsssd-8715fcb39bd8086cb59d978e9a6ae18aaae1f864.tar.gz
sssd-8715fcb39bd8086cb59d978e9a6ae18aaae1f864.tar.xz
sssd-8715fcb39bd8086cb59d978e9a6ae18aaae1f864.zip
Write log opening failures to the syslog
If there is a problem with reopening the logs, it can be an audit trail issue.
Diffstat (limited to 'src/util')
-rw-r--r--src/util/debug.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/debug.c b/src/util/debug.c
index 5b6fccd68..30026dc11 100644
--- a/src/util/debug.c
+++ b/src/util/debug.c
@@ -132,8 +132,11 @@ int open_debug_file_ex(const char *filename, FILE **filep)
if (debug_file && !filep) fclose(debug_file);
old_umask = umask(0177);
+ errno = 0;
f = fopen(logpath, "a");
if (f == NULL) {
+ sss_log(SSS_LOG_EMERG, "Could not open file [%s]. Error: [%d][%s]\n",
+ logpath, errno, strerror(errno));
free(logpath);
return EIO;
}