From 7b8e05fc8996827a99d5da74b30138a15c89a96e Mon Sep 17 00:00:00 2001 From: Ido Barnea Date: Thu, 22 Dec 2016 17:20:28 +0200 Subject: Small fix to previous commit Signed-off-by: Ido Barnea --- src/bp_sim.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bp_sim.cpp b/src/bp_sim.cpp index 5b3c1bb1..0725a437 100755 --- a/src/bp_sim.cpp +++ b/src/bp_sim.cpp @@ -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(); -- cgit 1.2.3-korg