Changeset 84c1a0a for protocols/nogaim.c
- Timestamp:
- 2006-03-15T19:19:16Z (16 years ago)
- Branches:
- master
- Children:
- 8ba511d
- Parents:
- 58f3136
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.