- Timestamp:
- 2007-04-06T05:34:23Z (18 years ago)
- Branches:
- master
- Children:
- cd4723c
- Parents:
- aef4828
- Location:
- protocols
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/io.c
raef4828 r552e641 467 467 else 468 468 { 469 s = g_strdup_printf( "Stream error: %s%s%s", type, text ? ": " : "", text ? text : "" ); 470 imc_error( ic, s ); 471 g_free( s ); 469 imc_error( ic, "Stream error: %s%s%s", type, text ? ": " : "", text ? text : "" ); 472 470 } 473 471 -
protocols/msn/ns.c
raef4828 r552e641 671 671 if( key == NULL ) 672 672 { 673 char *err; 674 675 err = g_strdup_printf( "Error during Passport authentication (%s)", 676 rep->error_string ? rep->error_string : "Unknown error" ); 677 678 imc_error( ic, err ); 673 imc_error( ic, "Error during Passport authentication (%s)", 674 rep->error_string ? rep->error_string : "Unknown error" ); 679 675 imc_logout( ic ); 680 681 g_free( err );682 676 } 683 677 else
Note: See TracChangeset
for help on using the changeset viewer.