changeset 14573:9cbf4d3ef444

[gaim-migrate @ 17297] Use the correct function for send_raw in jabber. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sun, 17 Sep 2006 22:43:01 +0000
parents 2c8e6770bd72
children 333989477bcd
files libgaim/protocols/jabber/jabber.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libgaim/protocols/jabber/jabber.c	Sun Sep 17 21:29:59 2006 +0000
+++ b/libgaim/protocols/jabber/jabber.c	Sun Sep 17 22:43:01 2006 +0000
@@ -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)