From: Ido Barnea Date: Thu, 22 Dec 2016 15:20:28 +0000 (+0200) Subject: Small fix to previous commit X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=7b8e05fc8996827a99d5da74b30138a15c89a96e;p=trex.git Small fix to previous commit Signed-off-by: Ido Barnea --- 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();