From aebb5d5841f4f58d3cee81242345d341438b2ae9 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Fri, 17 Aug 2012 06:19:59 -0700 Subject: [PATCH] fix bug on previous commit --- src/olsr/helper/olsr-helper.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/olsr/helper/olsr-helper.cc b/src/olsr/helper/olsr-helper.cc index 357a90cd3..b54a69181 100644 --- a/src/olsr/helper/olsr-helper.cc +++ b/src/olsr/helper/olsr-helper.cc @@ -114,7 +114,7 @@ OlsrHelper::AssignStreams (NodeContainer c, int64_t stream) listOlsr = DynamicCast (listProto); if (listOlsr) { - currentStream += olsr->AssignStreams (currentStream); + currentStream += listOlsr->AssignStreams (currentStream); break; } }