* Allow the user to specify where to keep the database in the config file.

This commit is contained in:
Justin Maggard
2009-11-19 03:22:35 +00:00
parent 808fc6f459
commit 902b2105df
10 changed files with 50 additions and 19 deletions

2
log.c
View File

@ -122,7 +122,7 @@ log_err(int level, enum _log_facility facility, char *fname, int lineno, char *f
time_t t;
struct tm *tm;
if (level && level>log_level[facility])
if (level && level>log_level[facility] && level>E_FATAL)
return;
if (!log_fp)