Code

added tzset and setlocale to rrd_graph
[rrdtool-all.git] / program / src / rrd_restore.c
index 207986d89d617f5dd4a052665c0920e77789c735..e24cc8e990d2ac4cf8f466241555c5d26f7a8db4 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "rrd_tool.h"
 #include "rrd_rpncalc.h"
+#include <fcntl.h>
 
 /* Prototypes */
 
@@ -406,9 +407,12 @@ rrd_write(char *file_name, rrd_t *rrd)
     if (strcmp("-",file_name)==0){
       *rrd_file= *stdout;
     } else {
-      if ((rrd_file = fopen(file_name,"wb")) == NULL ) {
+      int fd = open(file_name,O_RDWR|O_CREAT|O_EXCL,0666);
+      if (fd == -1 || (rrd_file = fdopen(fd,"wb")) == NULL) {
        rrd_set_error("creating '%s': %s",file_name,strerror(errno));
        rrd_free(rrd);
+        if (fd != -1)
+          close(fd);
        return(-1);
       }
     }