diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2016-05-23 21:39:42 +0200 |
---|---|---|
committer | Luca Deri <lucaderi@users.noreply.github.com> | 2016-05-23 21:39:42 +0200 |
commit | f084bbb6d0617311f34e82adae658be132fd0f66 (patch) | |
tree | 4ef97a91b2cd693031258e555d77cefac5a739a2 | |
parent | a2843084d683b119c25ab866426f8d5712c03a8a (diff) | |
parent | 2f7a9bb789c94f8dc7a2422694e04d667a534d02 (diff) |
Merge pull request #201 from alagoutte/scan-build
Fix missing break
-rw-r--r-- | example/ndpi_util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/example/ndpi_util.c b/example/ndpi_util.c index 1aa944f9a..f28da7078 100644 --- a/example/ndpi_util.c +++ b/example/ndpi_util.c @@ -592,6 +592,7 @@ void ndpi_workflow_process_packet (struct ndpi_workflow * workflow, type = ETH_P_IPV6; ip_offset = 4 + eth_offset; + break; /* Cisco PPP in HDLC-like framing - 50 */ case DLT_PPP_SERIAL: |