mirror of
https://github.com/xmrig/xmrig.git
synced 2025-03-21 06:38:56 +00:00
Fix typo.
This commit is contained in:
parent
4928b6d3e3
commit
e9a16912c3
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ bool Httpd::start()
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, 4455, nullptr, nullptr, &Httpd::handler, this, MHD_OPTION_END);
|
m_daemon = MHD_start_daemon(MHD_USE_SELECT_INTERNALLY, m_port, nullptr, nullptr, &Httpd::handler, this, MHD_OPTION_END);
|
||||||
if (!m_daemon) {
|
if (!m_daemon) {
|
||||||
LOG_ERR("HTTP Daemon failed to start.");
|
LOG_ERR("HTTP Daemon failed to start.");
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue