Changeset 84c1a0a
- Timestamp:
- 2006-03-15T19:19:16Z (19 years ago)
- Branches:
- master
- Children:
- 8ba511d
- Parents:
- 58f3136
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
ipc.c
r58f3136 r84c1a0a 84 84 void ipc_master_cmd_restart( irc_t *data, char **cmd ) 85 85 { 86 struct bitlbee_child *child = (void*) data;87 88 86 if( global.conf->runmode != RUNMODE_FORKDAEMON ) 89 87 { -
protocols/nogaim.c
r58f3136 r84c1a0a 14 14 * (except for the function names). 15 15 * 16 * Copyright 2002-200 4 Wilmer van der Gaast <lintux@lintux.cx>16 * Copyright 2002-2006 Wilmer van der Gaast <wilmer@gaast.net> and others 17 17 */ 18 18 … … 352 352 353 353 /* MSN servers sometimes redirect you to a different server and do 354 the whole login sequence again, so subsequentcalls to this354 the whole login sequence again, so these "late" calls to this 355 355 function should be handled correctly. (IOW, ignored) */ 356 356 if( gc->flags & OPT_LOGGED_IN ) … … 366 366 if( u && u->away ) proto_away( gc, u->away ); 367 367 368 if( !strcmp(gc->prpl->name, "icq"))368 if( strcmp( gc->prpl->name, "ICQ" ) == 0 ) 369 369 { 370 370 for( u = gc->irc->users; u; u = u->next ) … … 470 470 /* list.c */ 471 471 472 int bud_list_cache_exists( struct gaim_connection *gc )473 {474 return( 0 );475 }476 477 void do_import( struct gaim_connection *gc, void *null )478 {479 return;480 }481 482 472 void add_buddy( struct gaim_connection *gc, char *group, char *handle, char *realname ) 483 473 { … … 552 542 553 543 return( b ); 554 }555 556 void do_export( struct gaim_connection *gc )557 {558 return;559 544 } 560 545 … … 882 867 883 868 return( c ); 884 }885 886 void serv_finish_login( struct gaim_connection *gc )887 {888 return;889 869 } 890 870 -
protocols/oscar/oscar.c
r58f3136 r84c1a0a 356 356 if (isdigit(*user->username)) { 357 357 odata->icq = TRUE; 358 /* this is odd but it's necessary for a proper do_import and do_export */ 358 /* This is odd but it's necessary for a proper do_import and do_export. 359 We don't do those anymore, but let's stick with it, just in case 360 it accidentally fixes something else too... */ 359 361 gc->password[8] = 0; 360 362 } else { … … 1737 1739 odata->rights.maxdenies = (guint)maxdenies; 1738 1740 1739 // serv_finish_login(gc);1740 1741 if (bud_list_cache_exists(gc))1742 do_import(gc, NULL);1743 1744 1741 aim_clientready(sess, fr->conn); 1745 1742 … … 2096 2093 } /* End of for loop */ 2097 2094 2098 if (tmp)2099 do_export(gc);2100 2095 aim_ssi_enable(sess, fr->conn); 2101 2096
Note: See TracChangeset
for help on using the changeset viewer.