9242350
From 04e23aa3f91ff137237daf68f02e7b3c0c1a9168 Mon Sep 17 00:00:00 2001
9242350
From: rpm-build <rpm-build>
9242350
Date: Tue, 11 Apr 2017 09:19:48 +0200
9242350
Subject: [PATCH 09/13] Change -n flag to -nn in TESTonce
9242350
9242350
We need to change this because we have a different meaning of -n
9242350
flag than upstream does. We use -nn in those cases.
9242350
---
9242350
 tests/TESTonce | 2 +-
9242350
 1 file changed, 1 insertion(+), 1 deletion(-)
9242350
9242350
diff --git a/tests/TESTonce b/tests/TESTonce
3f9bd4a
index 425abaa..81283d9 100755
9242350
--- a/tests/TESTonce
9242350
+++ b/tests/TESTonce
3f9bd4a
@@ -43,7 +43,7 @@ if ($^O eq 'MSWin32') {
9242350
 else {
9242350
     # we used to do this as a nice pipeline, but the problem is that $r fails to
9242350
     # to be set properly if the tcpdump core dumps.
3f9bd4a
-    $cmd = "$TCPDUMP 2>${rawstderrlog} -t -n -r $input $options >tests/NEW/${outputbase}";
3f9bd4a
+    $cmd = "$TCPDUMP 2>${rawstderrlog} -t -nn -r $input $options >tests/NEW/${outputbase}";
3f9bd4a
     print "CMD: $cmd\n" if $debug;
3f9bd4a
     $r = system $cmd;
3f9bd4a
     if($r == -1) {