mldonkey-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Mldonkey-commits] Changes to mldonkey/src/im/yahoo/yahoo.ml


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/im/yahoo/yahoo.ml
Date: Tue, 06 Sep 2005 07:25:04 -0400

Index: mldonkey/src/im/yahoo/yahoo.ml
diff -u mldonkey/src/im/yahoo/yahoo.ml:1.3 mldonkey/src/im/yahoo/yahoo.ml:1.4
--- mldonkey/src/im/yahoo/yahoo.ml:1.3  Wed Mar  2 20:37:09 2005
+++ mldonkey/src/im/yahoo/yahoo.ml      Tue Sep  6 11:24:59 2005
@@ -534,7 +534,7 @@
 let buf = Buffer.create 30000
       
 let send_message sock pkt = 
-  Buffer.clear buf;
+  Buffer.reset buf;
   Buffer.add_char buf 'Y';  
   Buffer.add_char buf 'M';  
   Buffer.add_char buf 'S';  
@@ -547,14 +547,14 @@
   buf_int32 buf pkt.id;
   Buffer.add_string buf pkt.payload;
   let s = Buffer.contents buf in
-  Buffer.clear buf;
+  Buffer.reset buf;
   lprintf "SENDING MESSAGE:"; lprint_newline ();
   dump s; lprint_newline ();
   write_string sock s;
   ()
   
 let yahoo_send_message sock pkt = 
-  Buffer.clear buf;
+  Buffer.reset buf;
   List.iter (fun (key, data) ->
       Printf.bprintf buf "%d" key;
       buf_int8 buf 0xc0;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]