From 912f068fe4fa038c401ab1d0e1d271f861caa2a1 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Tue, 9 Oct 2012 23:31:20 +0200 Subject: Fix wrong error message when --dbdir has no argument --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/init.cpp') 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; } -- cgit