Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv24670
Modified Files:
buddy.c
Log Message:
So I was out driving around and went to get back on I-80, but
there was no Westbound onramp at Cutting. I was so unpleased.
I kept driving. Their were signs for San Rafael, so I just kept
going. Little did I know that the it was referring to an onramp to
westbound 580, and that it was quite a distance from where I started.
It was good, though, because I was bored anyway.
Index: buddy.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/buddy.c,v
retrieving revision 1.268
retrieving revision 1.269
diff -u -d -r1.268 -r1.269
--- buddy.c 2001/11/02 01:41:36 1.268
+++ buddy.c 2001/11/04 07:42:28 1.269
@@ -1877,7 +1877,7 @@
static char buf[256], *tmp;
int count = 0, i = 0;
gushort bit = 1;
- while (bit <= 0x80) {
+ while (bit <= 0x400) {
if (bit & caps) {
switch (bit) {
case 0x1:
@@ -1899,10 +1899,14 @@
tmp = _("Send File");
break;
case 0x40:
+ case 0x200:
tmp = _("Games");
break;
case 0x80:
tmp = _("Stocks");
+ break;
+ case 0x400:
+ tmp = _("EveryBuddy Bug");
break;
default:
tmp = NULL;
|