From: aa7133@att.com Date: Sun, 29 Nov 2020 12:22:09 +0000 (+0200) Subject: 5.4.8 change tracing default to false and add case where mistake in config also set... X-Git-Tag: 5.4.8~3 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=92aeebe486d071b102f272c2e05d5bc48450efff;p=ric-plt%2Fe2.git 5.4.8 change tracing default to false and add case where mistake in config also set to false Change-Id: Ife1f600252140fb2bdb07b8eca1c6781f34ada5b Signed-off-by: aa7133@att.com --- diff --git a/RIC-E2-TERMINATION/sctpThread.cpp b/RIC-E2-TERMINATION/sctpThread.cpp index ae37ee5..16430fe 100644 --- a/RIC-E2-TERMINATION/sctpThread.cpp +++ b/RIC-E2-TERMINATION/sctpThread.cpp @@ -243,7 +243,7 @@ int buildConfiguration(sctp_params_t &sctpParams) { sctpParams.trace = false; } else { mdclog_write(MDCLOG_ERR, "Trace was set to wrong value %s, set to stop", tmpStr.c_str()); - sctpParams->trace = false; + sctpParams.trace = false; } jsonTrace = sctpParams.trace;