diff options
author | Guy Harris <guy@alum.mit.edu> | 2014-04-03 13:20:42 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2014-04-03 13:20:42 -0700 |
commit | 7aa1f26068a441b1ca0d7fd10debff207bfa878f (patch) | |
tree | f1663dc14ed46d769a665390c968781e627f64ea /print-pktap.c | |
parent | c527e26afba5f0fd8e38316caaacd2847509f240 (diff) | |
download | tcpdump-7aa1f26068a441b1ca0d7fd10debff207bfa878f.tar.gz |
Add missing break - thanks to Coverity for finding this one.
Diffstat (limited to 'print-pktap.c')
-rw-r--r-- | print-pktap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/print-pktap.c b/print-pktap.c index 009a663f..1b5e3c91 100644 --- a/print-pktap.c +++ b/print-pktap.c @@ -137,6 +137,7 @@ pktap_if_print(struct netdissect_options *ndo, case PKT_REC_NONE: ND_PRINT((ndo, "no data")); + break; case PKT_REC_PACKET: if ((printer = lookup_printer(dlt)) != NULL) { |