fix for sun sudio 11 incompatibility http://www.netbsd.org/cgi-bin/query-pr-single...
[rrdtool.git] / src / rrd_dump.c
index 6343e1d..08fa87c 100644 (file)
@@ -98,6 +98,10 @@ int rrd_dump_r(
         out_file = stdout;
     }
 
+    fputs("<?xml version=\"1.0\" encoding=\"utf-8\"?>", out_file);
+    fputs
+        ("<!DOCTYPE rrd SYSTEM \"http://oss.oetiker.ch/rrdtool/rrdtool.dtd\">",
+         out_file);
     fputs("<!-- Round Robin Database Dump -->", out_file);
     fputs("<rrd>", out_file);
     if (atoi(rrd.stat_head->version) <= 3) {
@@ -113,8 +117,8 @@ int rrd_dump_r(
 #else
 # error "Need strftime"
 #endif
-    fprintf(out_file, "\t<lastupdate> %ld </lastupdate> <!-- %s -->\n\n",
-            rrd.live_head->last_up, somestring);
+    fprintf(out_file, "\t<lastupdate> %lu </lastupdate> <!-- %s -->\n\n",
+            (unsigned long) rrd.live_head->last_up, somestring);
     for (i = 0; i < rrd.stat_head->ds_cnt; i++) {
         fprintf(out_file, "\t<ds>\n");
         fprintf(out_file, "\t\t<name> %s </name>\n", rrd.ds_def[i].ds_nam);
@@ -200,7 +204,8 @@ int rrd_dump_r(
             if (atoi(rrd.stat_head->version) >= 4) {
                 fprintf(out_file,
                         "\t\t<smoothing_window> %0.10e </smoothing_window>\n",
-                        rrd.rra_def[i].par[RRA_seasonal_smoothing_window].u_val);
+                        rrd.rra_def[i].par[RRA_seasonal_smoothing_window].
+                        u_val);
             }
             fprintf(out_file,
                     "\t\t<dependent_rra_idx> %lu </dependent_rra_idx>\n",