comparison src/protocols/oscar/search.c @ 11253:7d31d61e6438

[gaim-migrate @ 13422] Get rid of faimdprintf and use gaim_debug functions instead committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 13 Aug 2005 06:43:45 +0000
parents 8d74ae785a46
children
comparison
equal deleted inserted replaced
11252:55356a29cdd1 11253:7d31d61e6438
19 aim_rxcallback_t userfunc; 19 aim_rxcallback_t userfunc;
20 aim_snac_t *snac2; 20 aim_snac_t *snac2;
21 21
22 /* XXX the modules interface should have already retrieved this for us */ 22 /* XXX the modules interface should have already retrieved this for us */
23 if (!(snac2 = aim_remsnac(sess, snac->id))) { 23 if (!(snac2 = aim_remsnac(sess, snac->id))) {
24 faimdprintf(sess, 2, "search error: couldn't get a snac for 0x%08lx\n", snac->id); 24 gaim_debug_misc("oscar", "search error: couldn't get a snac for 0x%08lx\n", snac->id);
25 return 0; 25 return 0;
26 } 26 }
27 27
28 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype))) 28 if ((userfunc = aim_callhandler(sess, rx->conn, snac->family, snac->subtype)))
29 ret = userfunc(sess, rx, snac2->data /* address */); 29 ret = userfunc(sess, rx, snac2->data /* address */);