aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorpaveljanik <Pavel@Janik.cz>2014-03-05 10:42:52 +0100
committerpaveljanik <Pavel@Janik.cz>2014-03-05 10:42:52 +0100
commit2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04 (patch)
tree6315d24ea0dda7a561e100570a57e2943d278493 /src/net.cpp
parent094eeff0bacd1ad92a5c27fc79c9dcd61123c09a (diff)
downloadbitcoin-2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04.tar.xz
Clarify the error message when unable to bind to port
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
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);