summaryrefslogtreecommitdiff
path: root/print-openflow.c
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-05-02 17:15:04 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2018-05-04 13:47:49 +0200
commitba8936b39b0ce2ff02f3aeb307df4c27657652d8 (patch)
tree71f8f3b775d7adfb7b2be374c634f749525c10eb /print-openflow.c
parentc45392de183543487bfebf52a5d2ccbeb9cef462 (diff)
downloadtcpdump-ba8936b39b0ce2ff02f3aeb307df4c27657652d8.tar.gz
Print truncations with nd_print_trunc() instead of tstr[] strings
Remove the tstr[] strings. Update the output of some tests accordingly. Moreover: Add or update some ndo_protocol fields.
Diffstat (limited to 'print-openflow.c')
-rw-r--r--print-openflow.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/print-openflow.c b/print-openflow.c
index a0cabbe6..f3c1a832 100644
--- a/print-openflow.c
+++ b/print-openflow.c
@@ -43,7 +43,6 @@
#include "openflow.h"
#include "oui.h"
-static const char tstr[] = " [|openflow]";
#define OF_VER_1_0 0x01
@@ -125,7 +124,7 @@ invalid: /* fail current packet */
ND_TCHECK_LEN(cp, ep - cp);
return ep;
trunc:
- ND_PRINT("%s", tstr);
+ nd_print_trunc(ndo);
return ep;
}