From: mid Date: Mon, 26 Feb 2001 01:51:01 +0000 (+0000) Subject: - Mon Feb 26 01:46:34 UTC 2001 X-Git-Tag: rel_0_99_2~73 X-Git-Url: http://andersk.mit.edu/gitweb/libfaim.git/commitdiff_plain/2acf2afad3a97974e7279e37ea7b53f1ce414676 - Mon Feb 26 01:46:34 UTC 2001 - Fix swapped bytes in aim_caps[]. Thanks to Bruce Miller for pointing this out. --- diff --git a/CHANGES b/CHANGES index 6bd7d0c..72835a9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,10 @@ No release numbers ------------------ + - Mon Feb 26 01:46:34 UTC 2001 + - Fix swapped bytes in aim_caps[]. Thanks to + Bruce Miller for pointing this out. + - Sun Feb 11 01:07:36 UTC 2001 - Make secondary connections to the authorizer work again - Make aim_auth_changepasswd() work again. diff --git a/aim_info.c b/aim_info.c index 1eb31b1..db164d1 100644 --- a/aim_info.c +++ b/aim_info.c @@ -126,7 +126,7 @@ u_char aim_caps[8][16] = { /* Games */ {0x09, 0x46, 0x13, 0x4a, 0x4c, 0x7f, 0x11, 0xd1, - 0x22, 0x82, 0x44, 0x45, 0x53, 0x54, 0x00, 0x00}, + 0x82, 0x22, 0x44, 0x45, 0x53, 0x54, 0x00, 0x00}, }; faim_internal unsigned short aim_getcap(unsigned char *capblock, int buflen)