diff libpurple/protocols/yahoo/util.c @ 28036:8be4bea98188

merged with im.pidgin.pidgin
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Mon, 27 Jul 2009 15:22:00 +0900
parents e1cd44c7c7af 908be3822215
children 784013acc2f3
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/util.c	Mon Jul 27 01:08:46 2009 +0900
+++ b/libpurple/protocols/yahoo/util.c	Mon Jul 27 15:22:00 2009 +0900
@@ -54,7 +54,7 @@
 	gchar *t1,*t2,*t3;
 	GSList *tmp;
 	GSList *cookies;
-	cookies = ((struct yahoo_data*)(gc->proto_data))->cookies;
+	cookies = ((YahooData*)(gc->proto_data))->cookies;
 	tmp = cookies;
 	while(tmp)
 	{
@@ -119,7 +119,7 @@
  */
 char *yahoo_string_encode(PurpleConnection *gc, const char *str, gboolean *utf8)
 {
-	struct yahoo_data *yd = gc->proto_data;
+	YahooData *yd = gc->proto_data;
 	char *ret = NULL;
 	gsize newlen;
 	const char *to_codeset;
@@ -147,7 +147,7 @@
  */
 char *yahoo_string_decode(PurpleConnection *gc, const char *str, gboolean utf8)
 {
-	struct yahoo_data *yd = gc->proto_data;
+	YahooData *yd = gc->proto_data;
 	char *ret, *tmp;
 	const char *from_codeset;
 	gsize newlen;