Changeset 7e3592e for storage_xml.c
- Timestamp:
- 2006-07-05T18:34:31Z (18 years ago)
- Branches:
- master
- Children:
- 75a4b85
- Parents:
- 5b52a48
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_xml.c
r5b52a48 r7e3592e 382 382 } 383 383 384 g_snprintf( path, sizeof( path ) - 2, "%s%s%s", global.conf->configdir, irc->nick, ".xml" ); 384 path2 = g_strdup( irc->nick ); 385 nick_lc( path2 ); 386 g_snprintf( path, sizeof( path ) - 2, "%s%s%s", global.conf->configdir, path2, ".xml" ); 387 g_free( path2 ); 385 388 386 389 if( !overwrite && access( path, F_OK ) != -1 )
Note: See TracChangeset
for help on using the changeset viewer.