diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-21 09:57:56 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-21 09:58:02 +0100 |
| commit | fc5d85c4bbb5fd5964117d4faf698ef2bf4ec634 (patch) | |
| tree | 505aee491f3c61360f71839472f2503d94eacf8e /src/net.cpp | |
| parent | Merge pull request #3850 (diff) | |
| parent | Adjust branding in datadir lock error message (diff) | |
| download | discoin-fc5d85c4bbb5fd5964117d4faf698ef2bf4ec634.tar.xz discoin-fc5d85c4bbb5fd5964117d4faf698ef2bf4ec634.zip | |
Merge pull request #3806
9e2872c Adjust branding in datadir lock error message (Michagogo)
d30d379 Slightly tweak error when unable to bind port (Michagogo)
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 19f4a73bc..653f24ec3 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 Core Daemon is probably already running."), addrBind.ToString()); + strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core 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); |