Project

General

Profile

Bug #2005

Updated by Vince Lehman over 9 years ago

Currently, SyncLogicHandler checks the router name in an update against the router prefix in the configuration file. 

 ``` ''' 
 if (routerName != pnlsr.getConfParameter().getRouterPrefix()) 
 ``` ''' 

 But, routerName does not include the network while getRouterPrefix() does. Thus, the conditional will always evaluate to true. 

 Instead, the network should be prepended to the routerName before the check.

Back