diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-21 09:57:56 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-21 09:58:02 +0100 |
| commit | fc5d85c4bbb5fd5964117d4faf698ef2bf4ec634 (patch) | |
| tree | 505aee491f3c61360f71839472f2503d94eacf8e /src/init.cpp | |
| parent | Merge pull request #3850 (diff) | |
| parent | Adjust branding in datadir lock error message (diff) | |
| download | discoin-fc5d85c4bbb5fd5964117d4faf698ef2bf4ec634.tar.xz discoin-fc5d85c4bbb5fd5964117d4faf698ef2bf4ec634.zip | |
Merge pull request #3806
9e2872c Adjust branding in datadir lock error message (Michagogo)
d30d379 Slightly tweak error when unable to bind port (Michagogo)
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 372f5db29..1a325ca69 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -568,7 +568,7 @@ bool AppInit2(boost::thread_group& threadGroup) if (file) fclose(file); static boost::interprocess::file_lock lock(pathLockFile.string().c_str()); if (!lock.try_lock()) - return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin is probably already running."), strDataDir)); + return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Bitcoin Core is probably already running."), strDataDir)); if (GetBoolArg("-shrinkdebugfile", !fDebug)) ShrinkDebugFile(); |