Changeset f277225
- Timestamp:
- 2010-06-06T21:58:46Z (14 years ago)
- Branches:
- master
- Children:
- 04a927c
- Parents:
- 3dc6d86
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_xml.c
r3dc6d86 rf277225 404 404 return STORAGE_ALREADY_EXISTS; 405 405 406 strcat( path, " ~" );407 if( ( fd = open( path, O_WRONLY | O_CREAT | O_TRUNC, 0600) ) < 0 )406 strcat( path, ".XXXXXX" ); 407 if( ( fd = mkstemp( path ) ) < 0 ) 408 408 { 409 409 irc_usermsg( irc, "Error while opening configuration file." ); … … 499 499 close( fd ); 500 500 501 path2 = g_strndup( path, strlen( path ) - 1);501 path2 = g_strndup( path, strlen( path ) - 7 ); 502 502 if( rename( path, path2 ) != 0 ) 503 503 {
Note: See TracChangeset
for help on using the changeset viewer.