Slightly tweak error when unable to bind port

A slight improvement over 2d2d8fae3d -- we don't know that it's the daemon, it could be the GUI.
This commit is contained in:
Michagogo 2014-03-05 18:25:35 +02:00
parent 334bd22e75
commit d30d379beb

View file

@ -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);