From 728b71c7005222107b77be5810193be5fc7da8d6 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Fri, 13 Mar 2015 08:26:11 +0900 Subject: [PATCH] Clarify error message "Node information" is too vague. --- config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.c b/config.c index 14df7890..9975e986 100644 --- a/config.c +++ b/config.c @@ -243,13 +243,13 @@ parse_config(const char *config_file, t_configuration_options *options) /* Check config settings */ if (*options->cluster_name == '\0') { - log_err(_("Cluster name is missing. Check the configuration file.\n")); + log_err(_("Cluster name was not found. Check the configuration file.\n")); exit(ERR_BAD_CONFIG); } if (options->node == -1) { - log_err(_("Node information is missing. Check the configuration file.\n")); + log_err(_("Node id was not found. Check the configuration file.\n")); exit(ERR_BAD_CONFIG); }