diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-10-09 23:31:20 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-10-09 23:31:20 +0200 |
commit | 912f068fe4fa038c401ab1d0e1d271f861caa2a1 (patch) | |
tree | 8f64f625c7165a5dfadfbaa732e16178525b4352 /src/init.cpp | |
parent | 8f5d786f0eaec17dd2cb60f3dfb434caabf48e92 (diff) |
Fix wrong error message when --dbdir has no argument
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 ee36cb39a..4f0f8bac3 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -384,7 +384,7 @@ void Init(int ac, char **av) if (GetCommandLineArgument("dbdir", 0, Arg)) { if (Arg.empty()) - throw FatalException("The --confdir option requires a path"); + throw FatalException("The --dbdir option requires a path"); db_dir = Arg; } |