mldonkey-commits
[Top][All Lists]
Advanced

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

[Mldonkey-commits] Changes to mldonkey/src/utils/net/ip_set.ml


From: mldonkey-commits
Subject: [Mldonkey-commits] Changes to mldonkey/src/utils/net/ip_set.ml
Date: Wed, 06 Jul 2005 20:25:55 -0400

Index: mldonkey/src/utils/net/ip_set.ml
diff -u mldonkey/src/utils/net/ip_set.ml:1.7 
mldonkey/src/utils/net/ip_set.ml:1.8
--- mldonkey/src/utils/net/ip_set.ml:1.7        Thu Jun 23 10:53:57 2005
+++ mldonkey/src/utils/net/ip_set.ml    Thu Jul  7 00:25:46 2005
@@ -151,20 +151,19 @@
   of_list_aux l BL_Empty
 
 let print_list buf bl =
-
   let rec print_list_aux bl =
     match bl with
-       BL_Empty -> 0
+        BL_Empty -> 0
       | BL_Range (red, left, br, right) ->
-         let nleft = print_list_aux left in
-         if br.blocking_hits > 0 then
-           Printf.bprintf buf "%s (%d hits): %s - %s\n" 
-             br.blocking_description
-             br.blocking_hits
-             (Ip.to_string br.blocking_begin)
-             (Ip.to_string br.blocking_end);
-         let nright = print_list_aux right in
-           nleft + 1 + nright in
+          let nleft = print_list_aux left in
+          if br.blocking_hits > 0 then
+            Printf.bprintf buf "%s (%d hits): %s - %s\n" 
+              br.blocking_description
+              br.blocking_hits
+              (Ip.to_string br.blocking_begin)
+              (Ip.to_string br.blocking_end);
+          let nright = print_list_aux right in
+          nleft + 1 + nright in
 
   let count = print_list_aux bl in
   Printf.bprintf buf "%d ranges\n" count




reply via email to

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