When I compiled flow-tools-0.67 on Solaris 10 (for SPARC) using GCC
3.4.3, I got a few compiler errors because of jump labels with no
statements following them.  The following patch inserts empty
statements (";") to fix this.

Regards,
-- 
Simon.

--- /tmp/T0tvaqmM       Sun Apr 10 13:57:33 2005
+++ src/flow-cat.c      Sun Apr 10 13:49:27 2005
@@ -551,7 +551,7 @@
         break;
 
 next_file:
-
+      ;
     }  /* FOREACH filename in dir */
 
   } /* foreach dir bundle */
--- /tmp/T0awa4mM       Sun Apr 10 13:57:33 2005
+++ src/flow-dscan.c    Sun Apr 10 13:49:59 2005
@@ -560,8 +560,8 @@
       ager(&ds, total_flows32);
 
 skip2:
+    ;
 
-
   } /* while rec */
 
   if (debug > 0) {
@@ -806,7 +806,7 @@
   fterr_info("ager: reset hash run");
 
 skip3:
-
+  ;
 } /* ager */
 
 int load_suppress(struct dscan_state *ds, int sd)
--- /tmp/T0UwaGnM       Sun Apr 10 13:57:33 2005
+++ src/flow-fanout.c   Sun Apr 10 13:50:10 2005
@@ -840,7 +840,7 @@
       } /* fte.buf_size */
     
 skip1:
-
+      ;
     } /* if FD_ISSET */
 
     if (sig_quit_flag) {
--- /tmp/T0VxayoM       Sun Apr 10 13:57:33 2005
+++ src/flow-receive.c  Sun Apr 10 13:50:05 2005
@@ -733,7 +733,7 @@
       } /* for */
 
 skip1:
-
+      ;
     } /* if FD_ISSET */
 
   } /* while 1 */

_______________________________________________
Flow-tools mailing list
[EMAIL PROTECTED]
http://mailman.splintered.net/mailman/listinfo/flow-tools

Reply via email to