diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-05-20 01:34:06 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-05-20 01:34:06 -0700 |
| commit | 563f3efda3d3230bc512b35f15598d5e4e3a5071 (patch) | |
| tree | e14446de58b824cf5afbcd2f29922b70736925c3 /src/net.cpp | |
| parent | Merge pull request #1353 from Diapolo/RPC_OpenDebugLog_Icon (diff) | |
| parent | allow translation of "options" used in the --help message / split translation... (diff) | |
| download | discoin-563f3efda3d3230bc512b35f15598d5e4e3a5071.tar.xz discoin-563f3efda3d3230bc512b35f15598d5e4e3a5071.zip | |
Merge pull request #1323 from Diapolo/string_fixes
translation updates / string updates
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 65b78bf6f..8d1938760 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()); |