Mercurial > pidgin
view src/protocols/oscar/adverts.c @ 12478:8489040cf97b
[gaim-migrate @ 14789]
Patch to gaim-devel by Aleksander Piotrowski
"Looks like if one sets alias for particular buddy then alias_buddy callback
is not called. Following diff fixes that problem for me (verified with
jabber and my own protocol plugins) but I'm not sure if it is correct place
to call serv_alias_buddy() (as I'm not sure if this whole alias bug isn't
only my local problem ;)"
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 13 Dec 2005 23:25:24 +0000 |
parents | e73c48cf1645 |
children |
line wrap: on
line source
/* * Family 0x0005 - Advertisements. * */ #define FAIM_INTERNAL #include <aim.h> faim_export int aim_ads_requestads(aim_session_t *sess, aim_conn_t *conn) { return aim_genericreq_n(sess, conn, 0x0005, 0x0002); } static int snachandler(aim_session_t *sess, aim_module_t *mod, aim_frame_t *rx, aim_modsnac_t *snac, aim_bstream_t *bs) { return 0; } faim_internal int adverts_modfirst(aim_session_t *sess, aim_module_t *mod) { mod->family = 0x0005; mod->version = 0x0001; mod->toolid = 0x0001; mod->toolversion = 0x0001; mod->flags = 0; strncpy(mod->name, "adverts", sizeof(mod->name)); mod->snachandler = snachandler; return 0; }