]> andersk Git - libfaim.git/commitdiff
This should cure what ailes you.
authormid <mid>
Tue, 12 Sep 2000 05:12:15 +0000 (05:12 +0000)
committermid <mid>
Tue, 12 Sep 2000 05:12:15 +0000 (05:12 +0000)
CHANGES
aim_misc.c

diff --git a/CHANGES b/CHANGES
index 74d39a7b8be7cad2cded7b5cb52b465eb64c9b3d..02a2e24eb9610340245b72f481bedd682d9e5a01 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,9 @@
 
 No release numbers
 ------------------
+ - Tue Sep 12 05:06:53 UTC 2000
+   - Revert the two-byte change in aim_misc, clientready
+
  - Tue Sep  5 04:41:45 GMT 2000
    - Few more minor things
    - Added the changes needed for faimtest.
index 3ba77226c1a7c22116a15a7697b37ca4f96ba936..1227f4680810b929298b363356bb759db80d6937 100644 (file)
@@ -319,7 +319,10 @@ faim_export unsigned long aim_bos_clientready(struct aim_session_t *sess,
      0x00, 0x01,   
      0x00, 0x03, 
      0x00, 0x04, 
-     0x07, 0xda,  
+     0x06, 0x86, /* the good ones */
+#if 0
+     0x07, 0xda, /* DUPLE OF DEATH! */
+#endif
 
      0x00, 0x02, 
      0x00, 0x01,  
@@ -408,7 +411,10 @@ faim_export unsigned long aim_bos_ackrateresp(struct aim_session_t *sess,
   i += aimutil_put16(newpacket->data+i, 0x0003);
   i += aimutil_put16(newpacket->data+i, 0x0004);
   i += aimutil_put16(newpacket->data+i, 0x0005);
-  
+
+  newpacket->commandlen = i;
+  newpacket->lock = 0;
+
   aim_tx_enqueue(sess, newpacket);
 
   return (sess->snac_nextid);
@@ -498,6 +504,8 @@ faim_export unsigned long aim_setversions(struct aim_session_t *sess,
     i += aimutil_put16(newpacket->data+i, 0x0003); /* version */
   }
 #endif
+
+  newpacket->commandlen = i;
   newpacket->lock = 0;
   aim_tx_enqueue(sess, newpacket);
 
This page took 0.081549 seconds and 5 git commands to generate.