diff options
author | paveljanik <Pavel@Janik.cz> | 2014-03-05 10:42:52 +0100 |
---|---|---|
committer | paveljanik <Pavel@Janik.cz> | 2014-03-05 10:42:52 +0100 |
commit | 2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04 (patch) | |
tree | 6315d24ea0dda7a561e100570a57e2943d278493 /src | |
parent | 094eeff0bacd1ad92a5c27fc79c9dcd61123c09a (diff) |
Clarify the error message when unable to bind to port
Diffstat (limited to 'src')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp index a315df85ac..19f4a73bc4 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1653,7 +1653,7 @@ bool BindListenPort(const CService &addrBind, string& strError) { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) - strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin server is probably already running."), addrBind.ToString()); + strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core Daemon is probably already running."), addrBind.ToString()); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString(), nErr, strerror(nErr)); LogPrintf("%s\n", strError); |