Changeset e6d6047
- Timestamp:
- 2006-04-03T20:21:35Z (19 years ago)
- Branches:
- master
- Children:
- f8de26f
- Parents:
- 57ef864
- Location:
- protocols
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
r57ef864 re6d6047 1045 1045 */ 1046 1046 if(find_buddy(GJ_GC(jap->gjc), jap->user) == NULL) { 1047 show_got_added(GJ_GC(jap->gjc), NULL, jap->user, NULL, NULL);1047 show_got_added(GJ_GC(jap->gjc), jap->user, NULL); 1048 1048 } 1049 1049 g_free(jap->user); -
protocols/msn/msn_util.c
r57ef864 re6d6047 130 130 { 131 131 msn_buddy_list_add( bla->gc, "AL", bla->handle, bla->realname ); 132 133 if( find_buddy( bla->gc, bla->handle ) == NULL ) 134 show_got_added( bla->gc, bla->handle, NULL ); 132 135 133 136 g_free( bla->handle ); -
protocols/nogaim.c
r57ef864 re6d6047 566 566 /* prpl.c */ 567 567 568 void show_got_added( struct gaim_connection *gc, char * id, char *handle, const char *realname, const char *msg)568 void show_got_added( struct gaim_connection *gc, char *handle, const char *realname ) 569 569 { 570 570 return; -
protocols/nogaim.h
r57ef864 re6d6047 244 244 245 245 /* prpl.c */ 246 G_MODULE_EXPORT void show_got_added( struct gaim_connection *gc, char * id, char *handle, const char *realname, const char *msg);246 G_MODULE_EXPORT void show_got_added( struct gaim_connection *gc, char *handle, const char *realname ); 247 247 248 248 /* server.c */ -
protocols/oscar/oscar.c
r57ef864 re6d6047 1119 1119 aim_ssi_auth_reply(od->sess, od->conn, uin, 1, ""); 1120 1120 // aim_send_im_ch4(od->sess, uin, AIM_ICQMSG_AUTHGRANTED, &message); 1121 show_got_added(data->gc, NULL, uin, NULL, NULL); 1121 if(find_buddy(data->gc, uin) == NULL) 1122 show_got_added(data->gc, uin, NULL); 1122 1123 1123 1124 g_free(uin); -
protocols/oscar/service.c
r57ef864 re6d6047 733 733 int tlvlen; 734 734 735 data = AIM_ICQ_STATE_ WEBAWARE | AIM_ICQ_STATE_HIDEIP | status; /* yay for error checking ;^) */735 data = AIM_ICQ_STATE_HIDEIP | status; /* yay for error checking ;^) */ 736 736 737 737 tlvlen = aim_addtlvtochain32(&tl, 0x0006, data);
Note: See TracChangeset
for help on using the changeset viewer.