]> andersk Git - libfaim.git/commitdiff
- Mon Feb 26 01:46:34 UTC 2001
authormid <mid>
Mon, 26 Feb 2001 01:51:01 +0000 (01:51 +0000)
committermid <mid>
Mon, 26 Feb 2001 01:51:01 +0000 (01:51 +0000)
  - Fix swapped bytes in aim_caps[]. Thanks to
      Bruce Miller <bmiller@ics.uci.edu> for pointing this out.

CHANGES
aim_info.c

diff --git a/CHANGES b/CHANGES
index 6bd7d0cfb039e160489118602848edb6dc3ff62a..72835a97520a65cce7e7cdb4e6febf7da3dddd60 100644 (file)
--- 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 <bmiller@ics.uci.edu> 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.
index 1eb31b1e4de25d95a77c8a7cdae4d5a3b900cd77..db164d1923c67c5c001df7791d175831c29cfeaf 100644 (file)
@@ -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)
This page took 0.053253 seconds and 5 git commands to generate.