Changeset 47b571d
- Timestamp:
- 2008-06-28T17:35:34Z (16 years ago)
- Branches:
- master
- Children:
- 913545e
- Parents:
- 178e2f8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_xml.c
r178e2f8 r47b571d 30 30 #include "md5.h" 31 31 #include <glib/gstdio.h> 32 33 #if !GLIB_CHECK_VERSION(2,8,0) 34 /* GLib < 2.8.0 doesn't have g_access, so just use the system access(). */ 35 #define g_access access 36 #endif 32 37 33 38 typedef enum … … 246 251 if( ! g_file_test( global.conf->configdir, G_FILE_TEST_EXISTS ) ) 247 252 log_message( LOGLVL_WARNING, "The configuration directory `%s' does not exist. Configuration won't be saved.", global.conf->configdir ); 248 else if( ! g_file_test( global.conf->configdir, G_FILE_TEST_EXISTS ) || g_access( global.conf->configdir, W_OK ) != 0 ) 253 else if( ! g_file_test( global.conf->configdir, G_FILE_TEST_EXISTS ) || 254 g_access( global.conf->configdir, W_OK ) != 0 ) 249 255 log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to `%s'.", global.conf->configdir ); 250 256 }
Note: See TracChangeset
for help on using the changeset viewer.