diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-05 15:07:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-05 15:07:22 +0000 |
commit | 7dc3df386f9b0fadc115ff55eefb8fbeb1c3077a (patch) | |
tree | c8162e48af58f6d4ee4667cd6ca6400d01a9f7e5 /protocols/Yahoo/src/libyahoo2/libyahoo2.c | |
parent | 3cd763c7a9c62bfb1c1dc43246b2199ee9427e92 (diff) |
- fix for Unicode popups;
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@2980 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo/src/libyahoo2/libyahoo2.c')
-rw-r--r-- | protocols/Yahoo/src/libyahoo2/libyahoo2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Yahoo/src/libyahoo2/libyahoo2.c b/protocols/Yahoo/src/libyahoo2/libyahoo2.c index f51475a5ca..3da50e7b67 100644 --- a/protocols/Yahoo/src/libyahoo2/libyahoo2.c +++ b/protocols/Yahoo/src/libyahoo2/libyahoo2.c @@ -1995,7 +1995,7 @@ static void yahoo_process_logon(struct yahoo_input_data *yid, struct yahoo_packe case 60: /* SMS -> 1 MOBILE USER */
/* sometimes going offline makes this 2, but invisible never sends it */
//NOTICE(("key %d:%s", pair->key, pair->value));
- if (atoi(pair->value) > 0 )
+ if (atoi(pair->value) > 0)
mobile = 1;
break;
@@ -2132,7 +2132,7 @@ static void yahoo_process_status(struct yahoo_input_data *yid, struct yahoo_pack case 60: /* SMS -> 1 MOBILE USER */
/* sometimes going offline makes this 2, but invisible never sends it */
NOTICE(("key %d:%s", pair->key, pair->value));
- if (atoi(pair->value) > 0 )
+ if (atoi(pair->value) > 0)
mobile = 1;
break;
case 16: /* Custom error message */
@@ -2421,7 +2421,7 @@ GET /config/pwtoken_login?src=ymsgr&ts=1195577376&token=token HTTP/1.1 **/
yss = yd->server_settings;
- if (yd->pw_token == NULL ) {
+ if (yd->pw_token == NULL) {
c = yahoo_urlencode(yd->password);
|