[netperf-dev] netperf2 commit test email r143 - in trunk: . src

raj at netperf.org raj at netperf.org
Thu Sep 27 11:41:35 PDT 2007


Author: raj
Date: 2007-09-27 11:19:38 -0700 (Thu, 27 Sep 2007)
New Revision: 143

Modified:
   trunk/Release_Notes
   trunk/src/nettest_bsd.c
Log:
fix broken format string

Modified: trunk/Release_Notes
===================================================================
--- trunk/Release_Notes	2007-09-26 16:59:12 UTC (rev 142)
+++ trunk/Release_Notes	2007-09-27 18:19:38 UTC (rev 143)
@@ -1,8 +1,10 @@
 These are the Release Notes leading-up to Revision 2.4.4 of netperf:
 
-
 Things changed in this release:
 
+*) Fix a misplaced \n in a format string of send_tcp_maerts, courtesy
+   of Alexander Duyck.
+
 *) There is an experimental global -r option which will allow one to
    include CPU utilization measurements, but make the decision about
    hitting confidence based on the result only.  The test banner will

Modified: trunk/src/nettest_bsd.c
===================================================================
--- trunk/src/nettest_bsd.c	2007-09-26 16:59:12 UTC (rev 142)
+++ trunk/src/nettest_bsd.c	2007-09-27 18:19:38 UTC (rev 143)
@@ -1953,7 +1953,7 @@
     "%7.2f %s\n";
   
   char *tput_fmt_1 =
-    "%6d %6d %6d    %-6.2f   %7.2f   \n %s";
+    "%6d %6d %6d    %-6.2f   %7.2f    %s \n";
   
   char *cpu_title = "\
 Recv   Send    Send                          Utilization       Service Demand\n\



More information about the netperf-dev mailing list