diff options
author | louiz’ <louiz@louiz.org> | 2016-08-01 09:48:45 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-08-01 09:48:58 +0200 |
commit | 58000c36a64fd8d4b8cdb7d76f318fca5a81381e (patch) | |
tree | fe5260925b5acae8ca8d7545f845f07c37c2fbd1 | |
parent | f89361c3701ef66e17a7d8159d99e3d0b0c76e4e (diff) | |
download | biboumi-58000c36a64fd8d4b8cdb7d76f318fca5a81381e.tar.gz biboumi-58000c36a64fd8d4b8cdb7d76f318fca5a81381e.tar.bz2 biboumi-58000c36a64fd8d4b8cdb7d76f318fca5a81381e.tar.xz biboumi-58000c36a64fd8d4b8cdb7d76f318fca5a81381e.zip |
Rephrase an error message
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 905cfa6..53f3193 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -28,7 +28,7 @@ static bool exiting = false; int config_help(const std::string& missing_option) { if (!missing_option.empty()) - log_error("Error: empty value for option ", missing_option, "."); + log_error("Configuration error: empty value for option ", missing_option, "."); log_error("Please provide a configuration file filled like this:\n\n" "hostname=irc.example.com\npassword=S3CR3T"); return 1; |