convert bindaddr from const char * to std::string

This commit is contained in:
Jason D. McCormick 2020-06-12 13:43:07 -04:00
parent c214bbfd89
commit 0a9ce3e450
5 changed files with 10 additions and 10 deletions

View file

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