remove unnecessary variable assignment

This commit is contained in:
Jason D. McCormick 2020-06-12 13:22:08 -04:00
parent 0cfd041de9
commit 0c1f05a8ff

View file

@ -164,9 +164,7 @@ void CYSFReflector::run()
CNetwork network(m_conf.getNetworkPort(), m_conf.getId(), m_conf.getName(), m_conf.getDescription(), m_conf.getNetworkDebug());
const char* bindaddr = m_conf.getNetworkBindAddr().c_str();
ret = network.open(bindaddr);
ret = network.open(m_conf.getNetworkBindAddr().c_str());
if (!ret) {
::LogFinalise();
return;