Changeset dd89a55
- Timestamp:
- 2006-05-15T17:57:12Z (19 years ago)
- Branches:
- master
- Children:
- 10a0abf
- Parents:
- 764b0aba
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
conf.c
r764b0aba rdd89a55 95 95 conf->port = i; 96 96 } 97 else if( opt == ' p' )97 else if( opt == 'P' ) 98 98 { 99 99 g_free( conf->pidfile ); -
ipc.c
r764b0aba rdd89a55 571 571 ipc_to_children_str( "OPERMSG :New BitlBee master process started (version " BITLBEE_VERSION ")\r\n" ); 572 572 573 fclose( fp ); 573 574 return 1; 574 575 } -
irc.c
r764b0aba rdd89a55 557 557 558 558 u = user_find( irc, irc->mynick ); 559 i f( u ) is_private = u->is_private;559 is_private = u->is_private; 560 560 561 561 va_start( params, format ); -
protocols/nogaim.c
r764b0aba rdd89a55 612 612 return; 613 613 } 614 return; 614 /* Why did we have this here.... 615 return; */ 615 616 } 616 617 -
protocols/oscar/service.c
r764b0aba rdd89a55 881 881 #endif 882 882 883 /* len can't be 0 here anyway... 883 884 } else if ((offset == 0x00001000) && (len == 0x00000000)) { 884 885 … … 887 888 aimbs_put32(&fr->data, 0xe9800998); 888 889 aimbs_put32(&fr->data, 0xecf8427e); 889 890 */ 890 891 } else 891 892 do_error_dialog(sess->aux_data, "WARNING: unknown hash request", "Gaim"); -
set.c
r764b0aba rdd89a55 150 150 if( s ) 151 151 { 152 t->next = s->next; 152 if( t ) 153 t->next = s->next; 154 else 155 irc->set = s->next; 156 153 157 g_free( s->key ); 154 158 if( s->value ) g_free( s->value );
Note: See TracChangeset
for help on using the changeset viewer.