diff options
author | Baruch Siach <baruch@tkos.co.il> | 2018-07-10 09:05:33 +0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-07-10 10:19:24 +0200 |
commit | ad8f4351ff1efe6539295bf4109d4bd45b5a627a (patch) | |
tree | 3a4b3f99cc303cadd578cbe453e4936f1c63675f /package/iperf/0002-fix-speed-display-in-csv-report.patch | |
parent | 1b5a8a44ea5e9f8976184041f97832dfa1653fed (diff) | |
download | buildroot-ad8f4351ff1efe6539295bf4109d4bd45b5a627a.tar.gz buildroot-ad8f4351ff1efe6539295bf4109d4bd45b5a627a.zip |
iperf: bump to version 2.0.12
Drop patch #1; not needed anymore.
Drop patch #2; fixed upstream in a slightly different way.
Cc: Matt Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/iperf/0002-fix-speed-display-in-csv-report.patch')
-rw-r--r-- | package/iperf/0002-fix-speed-display-in-csv-report.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/package/iperf/0002-fix-speed-display-in-csv-report.patch b/package/iperf/0002-fix-speed-display-in-csv-report.patch deleted file mode 100644 index b06c7099e9..0000000000 --- a/package/iperf/0002-fix-speed-display-in-csv-report.patch +++ /dev/null @@ -1,39 +0,0 @@ -From f035e70b72d4285dcdbd393e680777a927cb9da4 Mon Sep 17 00:00:00 2001 -From: Matt Weber <matthew.weber@rockwellcollins.com> -Date: Thu, 28 Jul 2016 19:04:01 -0500 -Subject: [PATCH] perf: fix "speed" display in csv report - -Some parameters displayed in the CSV reports are declared -as uint64_t, but the printf format doesn't reflect this. - -Submitted bug: https://sourceforge.net/p/iperf/bugs/66/ - -Signed-off-by: Matt Poduska <matt.poduska@rockwellcollins.com> -Signed-off-by: Atul Singh <atul.singh.mandla@gmail.com> -Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> ---- - src/Locale.c | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -diff --git a/src/Locale.c b/src/Locale.c -index b5d42b1..7b924fa 100644 ---- a/src/Locale.c -+++ b/src/Locale.c -@@ -260,11 +260,12 @@ const char reportCSV_bw_format[] = - const char reportCSV_bw_jitter_loss_format[] = - "%s,%s,%d,%.1f-%.1f,%I64d,%I64d,%.3f,%d,%d,%.3f,%d\n"; - #else -+#include "inttypes.h" - const char reportCSV_bw_format[] = --"%s,%s,%d,%.1f-%.1f,%d,%d\n"; -+"%s,%s,%d,%.1f-%.1f,%" PRId64 ",%" PRId64 "\n"; - - const char reportCSV_bw_jitter_loss_format[] = --"%s,%s,%d,%.1f-%.1f,%d,%d,%.3f,%d,%d,%.3f,%d\n"; -+"%s,%s,%d,%.1f-%.1f,%" PRId64 ",%" PRId64 ",%.3f,%d,%d,%.3f,%d\n"; - #endif //WIN32 - #endif //HAVE_QUAD_SUPPORT - /* ------------------------------------------------------------------- --- -1.9.1 - |