From: <sa...@us...> - 2006-09-17 22:43:17
|
Revision: 17297 http://svn.sourceforge.net/gaim/?rev=17297&view=rev Author: sadrul Date: 2006-09-17 15:43:01 -0700 (Sun, 17 Sep 2006) Log Message: ----------- Use the correct function for send_raw in jabber. Modified Paths: -------------- trunk/libgaim/protocols/jabber/jabber.c Modified: trunk/libgaim/protocols/jabber/jabber.c =================================================================== --- trunk/libgaim/protocols/jabber/jabber.c 2006-09-17 21:29:59 UTC (rev 17296) +++ trunk/libgaim/protocols/jabber/jabber.c 2006-09-17 22:43:01 UTC (rev 17297) @@ -328,7 +328,7 @@ return; } -int jabber_prpl_send_raw(GaimConnection *gc, const char *buf, int len) +static int jabber_prpl_send_raw(GaimConnection *gc, const char *buf, int len) { JabberStream *js = (JabberStream*)gc->proto_data; jabber_send_raw(js, buf, len); @@ -1891,7 +1891,7 @@ jabber_si_new_xfer, /* new_xfer */ jabber_offline_message, /* offline_message */ NULL, /* whiteboard_prpl_ops */ - jabber_send_raw, /* send_raw */ + jabber_prpl_send_raw, /* send_raw */ }; static gboolean load_plugin(GaimPlugin *plugin) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |