From: Francis Dupont Date: Tue, 16 Aug 2016 15:29:47 +0000 (+0200) Subject: [master] Fixed merge error X-Git-Tag: trac4551_base X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2edbac4338c34eda64210bfc7bf66a9f1017ed65;p=thirdparty%2Fkea.git [master] Fixed merge error --- diff --git a/src/lib/eval/token.cc b/src/lib/eval/token.cc index bda146f272..918e4e9ae7 100644 --- a/src/lib/eval/token.cc +++ b/src/lib/eval/token.cc @@ -159,7 +159,7 @@ OptionPtr TokenRelay6Option::getOption(Pkt& pkt) { try { // Check if it's a Pkt6. If it's not the dynamic_cast will // throw std::bad_cast. - const Pkt6& pkt6 = dynamic_cast(pkt); + Pkt6& pkt6 = dynamic_cast(pkt); try { // Now that we have the right type of packet we can