Mercurial > pidgin
diff src/buddy.c @ 2920:4ed6fb39870b
[gaim-migrate @ 2933]
who the hell cares.
committer: Tailor Script <tailor@pidgin.im>
| author | Adam Fritzler <mid@auk.cx> |
|---|---|
| date | Tue, 01 Jan 2002 09:49:04 +0000 |
| parents | 538c58b43eff |
| children | 8e924e4aa256 |
line wrap: on
line diff
--- a/src/buddy.c Sat Dec 22 08:11:11 2001 +0000 +++ b/src/buddy.c Tue Jan 01 09:49:04 2002 +0000 @@ -1894,12 +1894,12 @@ return 0; } -static char *caps_string(gushort caps) +static char *caps_string(guint caps) { static char buf[256], *tmp; int count = 0, i = 0; - gushort bit = 1; - while (bit <= 0x800) { + guint bit = 1; + while (bit <= 0x10000) { if (bit & caps) { switch (bit) { case 0x1: @@ -1927,12 +1927,30 @@ case 0x80: tmp = _("Stocks"); break; + case 0x100: + tmp = _("Send Buddy List"); + break; case 0x400: tmp = _("EveryBuddy Bug"); break; case 0x800: tmp = _("AP User"); break; + case 0x1000: + tmp = _("ICQ RTF"); + break; + case 0x2000: + tmp = _("Nihilist"); + break; + case 0x4000: + tmp = _("ICQ Server Relay"); + break; + case 0x8000: + tmp = _("ICQ Unknown"); + break; + case 0x10000: + tmp = _("Trillian Encryption"); + break; default: tmp = NULL; break;
