Changes in storage_text.c [eeb85a8:34337a7]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_text.c
reeb85a8 r34337a7 30 30 static void text_init (void) 31 31 { 32 /* Don't complain about the configuration directory anymore, leave it33 up to the XML storage module, which uses the same directory for it34 anyway. Nobody should be using just the text plugin anymore since35 it's read only! */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.", global.conf->configdir ); 34 else if( access( global.conf->configdir, R_OK ) != 0 || access( global.conf->configdir, W_OK ) != 0 ) 35 log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to %s.", global.conf->configdir ); 36 36 } 37 37
Note: See TracChangeset
for help on using the changeset viewer.