diff options
| author | Luke Dashjr <[email protected]> | 2015-12-09 10:53:12 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2015-12-14 02:11:10 +0000 |
| commit | d5f46832de900cee0801ca40bba743c9564cccb8 (patch) | |
| tree | 6cf53662ecd4e95a8803e7e51d6fe59f3e321708 /src/net.cpp | |
| parent | Merge pull request #7092 (diff) | |
| download | discoin-d5f46832de900cee0801ca40bba743c9564cccb8.tar.xz discoin-d5f46832de900cee0801ca40bba743c9564cccb8.zip | |
Unify package name to as few places as possible without major changes
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 cff4c5450..2b804b0b4 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1849,7 +1849,7 @@ bool BindListenPort(const CService &addrBind, string& strError, bool fWhiteliste { int nErr = WSAGetLastError(); if (nErr == WSAEADDRINUSE) - strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin Core is probably already running."), addrBind.ToString()); + strError = strprintf(_("Unable to bind to %s on this computer. %s is probably already running."), addrBind.ToString(), _(PACKAGE_NAME)); else strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %s)"), addrBind.ToString(), NetworkErrorString(nErr)); LogPrintf("%s\n", strError); |