comparison src/protocols/gg/gg.c @ 10388:088633feb846

[gaim-migrate @ 11615] this makes gcc shut up about some warnings committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Thu, 16 Dec 2004 03:50:54 +0000
parents cf991e2b63cb
children b4b9dabdd7c7
comparison
equal deleted inserted replaced
10387:00cd0c08bb04 10388:088633feb846
1 /* 1 /*
2 * gaim - Gadu-Gadu Protocol Plugin 2 * gaim - Gadu-Gadu Protocol Plugin
3 * $Id: gg.c 11327 2004-11-19 03:46:15Z thekingant $ 3 * $Id: gg.c 11615 2004-12-16 03:50:54Z faceprint $
4 * 4 *
5 * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL> 5 * Copyright (C) 2001 Arkadiusz Mi¶kiewicz <misiek@pld.ORG.PL>
6 * 6 *
7 * This program is free software; you can redistribute it and/or modify 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by 8 * it under the terms of the GNU General Public License as published by
1510 return; 1510 return;
1511 } 1511 }
1512 } 1512 }
1513 #endif 1513 #endif
1514 1514
1515 static void agg_change_passwd(GaimConnection *gc, const char *old, const char *new) 1515 static void agg_change_passwd(GaimConnection *gc, const unsigned char *old, const unsigned char *new)
1516 { 1516 {
1517 struct agg_http *hpass = g_new0(struct agg_http, 1); 1517 struct agg_http *hpass = g_new0(struct agg_http, 1);
1518 gchar *u = gg_urlencode(gaim_account_get_username(gc->account)); 1518 gchar *u = gg_urlencode(gaim_account_get_username(gc->account));
1519 gchar *p = gg_urlencode(gaim_account_get_password(gc->account)); 1519 gchar *p = gg_urlencode(gaim_account_get_password(gc->account));
1520 gchar *enew = gg_urlencode(new); 1520 gchar *enew = gg_urlencode(new);