fix comments and error messages in rrd_restore patch
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Wed, 15 Apr 2009 07:05:58 +0000 (07:05 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Wed, 15 Apr 2009 07:05:58 +0000 (07:05 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1793 a5681a0c-68f1-0310-ab6d-d61299d08faa

src/rrd_restore.c

index 59199a7..369f7bd 100644 (file)
@@ -115,7 +115,7 @@ static int get_long_from_node(
     xmlFree(str_ptr);
 
     if (str_ptr == end_ptr) {
     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);
     }
                       str_ptr);
         return (-1);
     }
@@ -136,7 +136,7 @@ static int get_ulong_from_node(
 
     str_ptr = (char *) xmlNodeListGetString(doc, node->xmlChildrenNode, 1);
     if (str_ptr == NULL) {
 
     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);
     }
 
         return (-1);
     }
 
@@ -145,7 +145,7 @@ static int get_ulong_from_node(
     xmlFree(str_ptr);
 
     if (str_ptr == end_ptr) {
     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);
     }
                       str_ptr);
         return (-1);
     }
@@ -153,7 +153,7 @@ static int get_ulong_from_node(
     *value = temp;
 
     return (0);
     *value = temp;
 
     return (0);
-}                       /* int get_long_from_node */
+}                       /* int get_ulong_from_node */
 
 static int get_double_from_node(
     xmlDoc * doc,
 
 static int get_double_from_node(
     xmlDoc * doc,