comparison src/protocols/gg/gg.c @ 5597:7805a9a2c6ba

[gaim-migrate @ 6001] quoth the submitter: "gadu-gadu plugin tries to use busy.png file, which does not exists. Correct name is away.png." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 31 May 2003 14:29:44 +0000
parents 9eb5b13fd412
children ea09a005a10d
comparison
equal deleted inserted replaced
5596:1b987484c262 5597:7805a9a2c6ba
1 /* 1 /*
2 * gaim - Gadu-Gadu Protocol Plugin 2 * gaim - Gadu-Gadu Protocol Plugin
3 * $Id: gg.c 5965 2003-05-30 09:38:29Z chipx86 $ 3 * $Id: gg.c 6001 2003-05-31 14:29:44Z lschiere $
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
1284 else { 1284 else {
1285 status = b->uc >> 5; 1285 status = b->uc >> 5;
1286 /* Drop all masks */ 1286 /* Drop all masks */
1287 status &= ~(GG_STATUS_FRIENDS_MASK); 1287 status &= ~(GG_STATUS_FRIENDS_MASK);
1288 if (status == GG_STATUS_BUSY) 1288 if (status == GG_STATUS_BUSY)
1289 *se = "busy"; 1289 *se = "away";
1290 else if (status == GG_STATUS_INVISIBLE) 1290 else if (status == GG_STATUS_INVISIBLE)
1291 *se = "invisiible"; 1291 *se = "invisiible";
1292 } 1292 }
1293 } 1293 }
1294 1294