Skip to content

Commit 2d2d8fa

Browse files
committed
Clarify the error message when unable to bind to port
1 parent 094eeff commit 2d2d8fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1653,7 +1653,7 @@ bool BindListenPort(const CService &addrBind, string& strError)
16531653
{
16541654
int nErr = WSAGetLastError();
16551655
if (nErr == WSAEADDRINUSE)
1656-
strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin server is probably already running."), addrBind.ToString());
1656+
strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core Daemon is probably already running."), addrBind.ToString());
16571657
else
16581658
strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString(), nErr, strerror(nErr));
16591659
LogPrintf("%s\n", strError);

0 commit comments

Comments
 (0)