comparison src/protocols/gg/gg.c @ 10395:b4b9dabdd7c7

[gaim-migrate @ 11624] Some whitespace fixes, a compile warning fix, and add a "logout" option to gaim-remote committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Fri, 17 Dec 2004 23:30:38 +0000
parents 088633feb846
children 3e4ecbdf8d0a
comparison
equal deleted inserted replaced
10394:45a0a07e8b25 10395:b4b9dabdd7c7
1 /* 1 /*
2 * gaim - Gadu-Gadu Protocol Plugin 2 * gaim - Gadu-Gadu Protocol Plugin
3 * $Id: gg.c 11615 2004-12-16 03:50:54Z faceprint $ 3 * $Id: gg.c 11624 2004-12-17 23:30:38Z thekingant $
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 unsigned char *old, const unsigned char *new) 1515 static void agg_change_passwd(GaimConnection *gc, const char *old, const 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);