From: Timo Kokkonen Date: Sun, 28 Oct 2012 10:41:48 +0000 (+0200) Subject: config: Fix copy paste errors in error messages X-Git-Url: http://git.itanic.dy.fi/?p=rrdd;a=commitdiff_plain;h=3b813f4b34a209aa2e65a6c46ac4cb0d90493cfa config: Fix copy paste errors in error messages Signed-off-by: Timo Kokkonen --- diff --git a/config.c b/config.c index dee4542..28ef208 100644 --- a/config.c +++ b/config.c @@ -88,7 +88,7 @@ static int parse_images(config_setting_t *list, struct rrd_database *db) config_setting_lookup_string(image, "timestart", ×tart); if (!timestart) { - pr_err("Database %s does not have \"height\" entry " + pr_err("Database %s does not have \"timestart\" entry " " in image data\n", db->name); return -1; @@ -96,7 +96,7 @@ static int parse_images(config_setting_t *list, struct rrd_database *db) config_setting_lookup_string(image, "timeend", &timeend); if (!timeend) { - pr_err("Database %s does not have \"height\" entry " + pr_err("Database %s does not have \"timeend\" entry " " in image data\n", db->name); return -1; @@ -105,8 +105,8 @@ static int parse_images(config_setting_t *list, struct rrd_database *db) config_setting_lookup_string(image, "imageformat", &imageformat); if (!imageformat) { - pr_err("Database %s does not have \"height\" entry " - " in image data\n", + pr_err("Database %s does not have \"imageformat\" "\ + "entry in image data\n", db->name); return -1; }