diff options
| author | paveljanik <[email protected]> | 2014-03-05 10:42:52 +0100 |
|---|---|---|
| committer | paveljanik <[email protected]> | 2014-03-05 10:42:52 +0100 |
| commit | 2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04 (patch) | |
| tree | 6315d24ea0dda7a561e100570a57e2943d278493 /src/net.cpp | |
| parent | Bitcoin is running fine... (diff) | |
| download | discoin-2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04.tar.xz discoin-2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04.zip | |
Clarify the error message when unable to bind to port
Diffstat (limited to 'src/net.cpp')
| -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 a315df85a..19f4a73bc 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); |