aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-05-20 01:34:06 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-05-20 01:34:06 -0700
commit563f3efda3d3230bc512b35f15598d5e4e3a5071 (patch)
treee14446de58b824cf5afbcd2f29922b70736925c3 /src/net.cpp
parent6f3b919ae1e5d980dc41d66bd4320d2a6623b66f (diff)
parent8b4d653663aa193bcc7c32ed7da5f4fa3f5e6746 (diff)
downloadbitcoin-563f3efda3d3230bc512b35f15598d5e4e3a5071.tar.xz
Merge pull request #1323 from Diapolo/string_fixes
translation updates / string updates
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 65b78bf6fa..8d19387602 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -1760,7 +1760,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 is probably already running."), addrBind.ToString().c_str());
+ strError = strprintf(_("Unable to bind to %s on this computer. Bitcoin is probably already running."), addrBind.ToString().c_str());
else
strError = strprintf(_("Unable to bind to %s on this computer (bind returned error %d, %s)"), addrBind.ToString().c_str(), nErr, strerror(nErr));
printf("%s\n", strError.c_str());