Changes in storage_xml.c [e67e513:5df65bd]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_xml.c
re67e513 r5df65bd 269 269 { 270 270 xd->unknown_tag ++; 271 irc_ rootmsg( irc, "Warning: Unknown XML tag found in configuration file (%s). "271 irc_usermsg( irc, "Warning: Unknown XML tag found in configuration file (%s). " 272 272 "This may happen when downgrading BitlBee versions. " 273 273 "This tag will be skipped and the information will be lost " … … 397 397 { 398 398 if( gerr && irc ) 399 irc_ rootmsg( irc, "Error from XML-parser: %s", gerr->message );399 irc_usermsg( irc, "Error from XML-parser: %s", gerr->message ); 400 400 401 401 g_clear_error( &gerr ); … … 473 473 if( ( fd = mkstemp( path ) ) < 0 ) 474 474 { 475 irc_ rootmsg( irc, "Error while opening configuration file." );475 irc_usermsg( irc, "Error while opening configuration file." ); 476 476 return STORAGE_OTHER_ERROR; 477 477 } … … 570 570 if( rename( path, path2 ) != 0 ) 571 571 { 572 irc_ rootmsg( irc, "Error while renaming temporary configuration file." );572 irc_usermsg( irc, "Error while renaming temporary configuration file." ); 573 573 574 574 g_free( path2 ); … … 585 585 g_free( pass_buf ); 586 586 587 irc_ rootmsg( irc, "Write error. Disk full?" );587 irc_usermsg( irc, "Write error. Disk full?" ); 588 588 close( fd ); 589 589
Note: See TracChangeset
for help on using the changeset viewer.