mldonkey-commits
[Top][All Lists]
Advanced

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

[Mldonkey-commits] Changes to mldonkey/src/networks/fileTP/fileTPHTTP.ml


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/networks/fileTP/fileTPHTTP.ml
Date: Sun, 16 Oct 2005 16:43:23 -0400

Index: mldonkey/src/networks/fileTP/fileTPHTTP.ml
diff -u mldonkey/src/networks/fileTP/fileTPHTTP.ml:1.14 
mldonkey/src/networks/fileTP/fileTPHTTP.ml:1.15
--- mldonkey/src/networks/fileTP/fileTPHTTP.ml:1.14     Sun Aug  7 12:57:22 2005
+++ mldonkey/src/networks/fileTP/fileTPHTTP.ml  Sun Oct 16 20:42:54 2005
@@ -67,7 +67,7 @@
   let referer = d.download_referer in
   
   let (x,y) = range in
-  let range = Printf.sprintf "%Ld-%Ld" x (y -- (Int64.one)) in
+  let range = Printf.sprintf "%Ld-%Ld" x (Int64.pred y) in
 
   let buf = Buffer.create 100 in
 
@@ -208,13 +208,13 @@
               String.sub range (dash_pos+1) (slash_pos - dash_pos - 1))
           in
           if slash_pos = star_pos - 1 then
-            x,y ++ Int64.one (* "bytes x-y/*" *)
+            x, Int64.succ y (* "bytes x-y/*" *)
           else
           let z = Int64.of_string (
               String.sub range (slash_pos+1) (len - slash_pos -1) )
           in
-          if y = z then x -- Int64.one, size else
-            x,y ++ Int64.one
+          if y = z then Int64.pred x, size else
+            x, Int64.succ y
         with
         | e ->
             lprintf_nl () "Exception %s for range [%s]"




reply via email to

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