diff src/protocols/napster/napster.c @ 2123:56c4382f2909

[gaim-migrate @ 2133] now has the ability to notify you beforehand that messages are too long. I haven't tested this yet though. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 06 Aug 2001 17:50:46 +0000
parents b66aca8e8dce
children a464da684307
line wrap: on
line diff
--- a/src/protocols/napster/napster.c	Sat Aug 04 01:37:49 2001 +0000
+++ b/src/protocols/napster/napster.c	Mon Aug 06 17:50:46 2001 +0000
@@ -217,12 +217,14 @@
 	return NULL;
 }
 
-static void nap_send_im(struct gaim_connection *gc, char *who, char *message, int away)
+static int nap_send_im(struct gaim_connection *gc, char *who, char *message, int away)
 {
 	gchar buf[NAP_BUF_LEN];
 
 	g_snprintf(buf, NAP_BUF_LEN, "%s %s", who, message);
 	nap_write_packet(gc, 0xCD, buf);
+
+	return 0;
 }
 
 static struct nap_channel *find_channel_by_name(struct gaim_connection *gc, char *name)