diff src/protocols/napster/napster.c @ 5679:0a0116686d51

[gaim-migrate @ 6097] let the prpls know about the new API changes committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 02 Jun 2003 22:24:07 +0000
parents 0bdfa28c678e
children 46d7ad0dfa26
line wrap: on
line diff
--- a/src/protocols/napster/napster.c	Mon Jun 02 22:17:30 2003 +0000
+++ b/src/protocols/napster/napster.c	Mon Jun 02 22:24:07 2003 +0000
@@ -60,12 +60,12 @@
 	gchar *email;
 };
 
-static struct gaim_conversation *nap_find_chat(GaimConnection *gc, const char *name)
+static GaimConversation *nap_find_chat(GaimConnection *gc, const char *name)
 {
 	GSList *bcs = gc->buddy_chats;
 
 	while (bcs) {
-		struct gaim_conversation *b = bcs->data;
+		GaimConversation *b = bcs->data;
 		if (!gaim_utf8_strcasecmp(b->name, name))
 			return b;
 		bcs = bcs->next;
@@ -199,7 +199,7 @@
 /* 401 - MSG_CLIENT_PART */
 static void nap_chat_leave(GaimConnection *gc, int id)
 {
-	struct gaim_conversation *c = gaim_find_chat(gc, id);
+	GaimConversation *c = gaim_find_chat(gc, id);
 
 	if (!c)
 		return;
@@ -210,7 +210,7 @@
 /* 402 - MSG_CLIENT_PUBLIC */
 static int nap_chat_send(GaimConnection *gc, int id, char *message)
 {
-	struct gaim_conversation *c = gaim_find_chat(gc, id);
+	GaimConversation *c = gaim_find_chat(gc, id);
 
 	if (!c)
 		return -EINVAL;
@@ -236,7 +236,7 @@
 {
 	GaimConnection *gc = data;
 	struct nap_data *ndata = gc->proto_data;
-	struct gaim_conversation *c;
+	GaimConversation *c;
 	gchar *buf, *buf2, *buf3, **res;
 	unsigned short header[2];
 	int len;