From 3b813f4b34a209aa2e65a6c46ac4cb0d90493cfa Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Sun, 28 Oct 2012 12:41:48 +0200 Subject: [PATCH] config: Fix copy paste errors in error messages Signed-off-by: Timo Kokkonen --- config.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; } -- 2.45.0