From db75ddb3d028202f41dc543d8aaa6a141f2b5cc3 Mon Sep 17 00:00:00 2001 From: kevin Date: Fri, 20 Sep 2024 18:15:39 -0400 Subject: [PATCH] cwFlowProc.cpp : Updated calls to network_create() to take a null preset_label. --- cwFlowProc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cwFlowProc.cpp b/cwFlowProc.cpp index 5628aa9..200ddd3 100644 --- a/cwFlowProc.cpp +++ b/cwFlowProc.cpp @@ -156,7 +156,7 @@ namespace cw goto errLabel; } - if((rc = network_create(proc->ctx,&networkCfg,1,proc->varL,1,p->net)) != kOkRC ) + if((rc = network_create(proc->ctx,&networkCfg,1,proc->varL,1,nullptr,p->net)) != kOkRC ) { rc = cwLogError(rc,"Creation failed on the subnet internal network."); goto errLabel; @@ -326,7 +326,7 @@ namespace cw // create the network object - which will hold 'count' subnets - each a duplicate of the // network described by 'networkCfg'. - if((rc = network_create(proc->ctx,networkCfgA,networkCfgN,proxyVarL,inst->count,internal_net)) != kOkRC ) + if((rc = network_create(proc->ctx,networkCfgA,networkCfgN,proxyVarL,inst->count,nullptr,internal_net)) != kOkRC ) { rc = cwLogError(rc,"Creation failed on the internal network."); goto errLabel;