diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-22 19:00:15 +0200 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2006-10-22 19:00:15 +0200 |
commit | e8a621101ade8c19383038cd400ab22bfd0de326 (patch) | |
tree | a398b05a0572897a22390c1e0b4dc1f83707d398 /storage_text.c | |
parent | 66f783fa6365fefe7ba449e6409b4dc1359b155b (diff) | |
parent | 6237ded20b3f3058f1ada9b6afeaa07fcba535eb (diff) |
Merge from main tree.
Diffstat (limited to 'storage_text.c')
-rw-r--r-- | storage_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage_text.c b/storage_text.c index acc9eefe..3a11facf 100644 --- a/storage_text.c +++ b/storage_text.c @@ -30,7 +30,7 @@ static void text_init (void) { if( access( global.conf->configdir, F_OK ) != 0 ) - log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", CONFIG ); + log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", global.conf->configdir ); else if( access( global.conf->configdir, R_OK ) != 0 || access( global.conf->configdir, W_OK ) != 0 ) log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to %s.", global.conf->configdir ); } |