From: oetiker Date: Wed, 15 Apr 2009 07:05:58 +0000 (+0000) Subject: fix comments and error messages in rrd_restore patch X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e5e564e3e5ae33391dc043f9139852ed72daac9c;hp=5e8d9d0fcca03064a155949cd4a9e169b2be81b3;p=rrdtool-all.git fix comments and error messages in rrd_restore patch git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.3@1793 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/src/rrd_restore.c b/program/src/rrd_restore.c index 79f80426..962b64c4 100644 --- a/program/src/rrd_restore.c +++ b/program/src/rrd_restore.c @@ -111,7 +111,7 @@ static int get_long_from_node( xmlFree(str_ptr); if (str_ptr == end_ptr) { - rrd_set_error("get_long_from_node: Cannot parse buffer as int: %s", + rrd_set_error("get_long_from_node: Cannot parse buffer as long: %s", str_ptr); return (-1); } @@ -132,7 +132,7 @@ static int get_ulong_from_node( str_ptr = (char *) xmlNodeListGetString(doc, node->xmlChildrenNode, 1); if (str_ptr == NULL) { - rrd_set_error("get_long_from_node: xmlNodeListGetString failed."); + rrd_set_error("get_ulong_from_node: xmlNodeListGetString failed."); return (-1); } @@ -141,7 +141,7 @@ static int get_ulong_from_node( xmlFree(str_ptr); if (str_ptr == end_ptr) { - rrd_set_error("get_long_from_node: Cannot parse buffer as int: %s", + rrd_set_error("get_ulong_from_node: Cannot parse buffer as unsigned long: %s", str_ptr); return (-1); } @@ -149,7 +149,7 @@ static int get_ulong_from_node( *value = temp; return (0); -} /* int get_long_from_node */ +} /* int get_ulong_from_node */ static int get_double_from_node( xmlDoc * doc,