diff options
| author | Michagogo <[email protected]> | 2014-03-05 18:25:35 +0200 |
|---|---|---|
| committer | Michagogo <[email protected]> | 2014-03-05 18:25:35 +0200 |
| commit | d30d379bebc351e5bdcd5b9fa79f47233fa353d0 (patch) | |
| tree | cdbd80536e998da13a5e0a92bf5d2a2ae6d8c951 /src | |
| parent | Merge pull request #3798 (diff) | |
| download | discoin-d30d379bebc351e5bdcd5b9fa79f47233fa353d0.tar.xz discoin-d30d379bebc351e5bdcd5b9fa79f47233fa353d0.zip | |
Slightly tweak error when unable to bind port
A slight improvement over 2d2d8fae3d8bc4e82dc631d93c6e19f954bbee04 -- we don't know that it's the daemon, it could be the GUI.
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 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); |