Changeset 28eda86
- Timestamp:
- 2006-10-22T13:53:55Z (18 years ago)
- Branches:
- master
- Children:
- 6237ded
- Parents:
- 670204f
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_text.c
r670204f r28eda86 31 31 { 32 32 if( access( global.conf->configdir, F_OK ) != 0 ) 33 log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", CONFIG);33 log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", global.conf->configdir ); 34 34 else if( access( global.conf->configdir, R_OK ) != 0 || access( global.conf->configdir, W_OK ) != 0 ) 35 35 log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to %s.", global.conf->configdir ); -
storage_xml.c
r670204f r28eda86 263 263 { 264 264 if( access( global.conf->configdir, F_OK ) != 0 ) 265 log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", CONFIG);265 log_message( LOGLVL_WARNING, "The configuration directory %s does not exist. Configuration won't be saved.", global.conf->configdir ); 266 266 else if( access( global.conf->configdir, R_OK ) != 0 || access( global.conf->configdir, W_OK ) != 0 ) 267 267 log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to %s.", global.conf->configdir );
Note: See TracChangeset
for help on using the changeset viewer.