From feddb19c9943d7c68a2fe67e9b8baf14d8979186 Mon Sep 17 00:00:00 2001 From: Saswat K Mishra Date: Mon, 15 Feb 2016 17:19:31 +0530 Subject: [PATCH] fixed missing brackets --- src/internet/model/icmpv6-l4-protocol.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internet/model/icmpv6-l4-protocol.cc b/src/internet/model/icmpv6-l4-protocol.cc index 33cc12a..58eb1d7 100644 --- a/src/internet/model/icmpv6-l4-protocol.cc +++ b/src/internet/model/icmpv6-l4-protocol.cc @@ -412,7 +412,7 @@ void Icmpv6L4Protocol::ReceiveLLA (Icmpv6OptionLinkLayerAddress lla, Ipv6Address cache->GetInterface ()->Send (*it, src); } } - if (!entry->IsPermanent) + if (!entry->IsPermanent ()) { entry->StartReachableTimer (); } -- 2.1.4