Small fix to previous commit 98/5198/1
authorIdo Barnea <[email protected]>
Thu, 22 Dec 2016 15:20:28 +0000 (17:20 +0200)
committerIdo Barnea <[email protected]>
Thu, 22 Dec 2016 15:20:28 +0000 (17:20 +0200)
Signed-off-by: Ido Barnea <[email protected]>
src/bp_sim.cpp

index 5b3c1bb..0725a43 100755 (executable)
@@ -2358,8 +2358,8 @@ enum CCapFileFlowInfo::load_cap_file_err CCapFileFlowInfo::load_cap_file(std::st
 
                 /* check that we don't have reserved TTL */
                 uint8_t ttl = pkt_indication.getTTL();
-                if ( ttl > 127) {
-                    pkt_indication.setTTL(127);
+                if ( ttl > 128) {
+                    pkt_indication.setTTL(128);
                 }
 
                 pkt_indication.clearTOSReserve();