comparison libpurple/protocols/oscar/family_userlookup.c @ 15822:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 1927f4ead3ca
comparison
equal deleted inserted replaced
15821:84b0f9b23ede 15822:32c366eeeb99
1 /* 1 /*
2 * Gaim's oscar protocol plugin 2 * Purple's oscar protocol plugin
3 * This file is the legal property of its developers. 3 * This file is the legal property of its developers.
4 * Please see the AUTHORS file distributed alongside this file. 4 * Please see the AUTHORS file distributed alongside this file.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public 7 * modify it under the terms of the GNU Lesser General Public
38 aim_rxcallback_t userfunc; 38 aim_rxcallback_t userfunc;
39 aim_snac_t *snac2; 39 aim_snac_t *snac2;
40 40
41 /* XXX the modules interface should have already retrieved this for us */ 41 /* XXX the modules interface should have already retrieved this for us */
42 if (!(snac2 = aim_remsnac(od, snac->id))) { 42 if (!(snac2 = aim_remsnac(od, snac->id))) {
43 gaim_debug_misc("oscar", "search error: couldn't get a snac for 0x%08lx\n", snac->id); 43 purple_debug_misc("oscar", "search error: couldn't get a snac for 0x%08lx\n", snac->id);
44 return 0; 44 return 0;
45 } 45 }
46 46
47 if ((userfunc = aim_callhandler(od, snac->family, snac->subtype))) 47 if ((userfunc = aim_callhandler(od, snac->family, snac->subtype)))
48 ret = userfunc(od, conn, frame, snac2->data /* address */); 48 ret = userfunc(od, conn, frame, snac2->data /* address */);