From 24173807ea8b1c895bc9ee75cb9924ba198901ea Mon Sep 17 00:00:00 2001 From: Bernhard Amann Date: Fri, 25 May 2012 11:35:56 -0700 Subject: [PATCH] reactivate network_time check in threading manager. previously this line made all input framework tests fail - it works now. Some of the other recent changes of the threading manager must have fixed that problem. This was easy :) --- src/threading/Manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/threading/Manager.cc b/src/threading/Manager.cc index 491b8379e8..4a05fb8d41 100644 --- a/src/threading/Manager.cc +++ b/src/threading/Manager.cc @@ -125,7 +125,7 @@ void Manager::Process() if ( msg->Process() ) { - //if ( network_time ) // FIXME: ask robin again if he needs this. makes input interface not work in bro_init. + if ( network_time ) did_process = true; }