Added modes in other call to open() with O_CREAT
authorsapanb <sapanb@8c455092-636d-4788-adf5-e71def0336e8>
Fri, 8 Jul 2011 15:17:56 +0000 (15:17 +0000)
committersapanb <sapanb@8c455092-636d-4788-adf5-e71def0336e8>
Fri, 8 Jul 2011 15:17:56 +0000 (15:17 +0000)
git-svn-id: http://svn.planet-lab.org/svn/fprobe-ulog/trunk@18794 8c455092-636d-4788-adf5-e71def0336e8

src/fprobe-ulog.c

index 0dc3071..3add97c 100644 (file)
@@ -479,7 +479,7 @@ unsigned get_data_file_fd(char *fname, int cur_fd) {
             system(gzip_cmd);
         }
                snprintf(cur_output_file,MAX_PATH_LEN,"%s.%d",fname,cur_epoch);
             system(gzip_cmd);
         }
                snprintf(cur_output_file,MAX_PATH_LEN,"%s.%d",fname,cur_epoch);
-               if ((write_fd = open(cur_output_file, O_RDWR|O_CREAT|O_TRUNC)) < 0) {
+               if ((write_fd = open(cur_output_file, O_RDWR|O_CREAT|O_TRUNC,S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH)) < 0) {
                        my_log(LOG_ERR, "open(): %s (%s)\n", cur_output_file, strerror(errno));
                        exit(1);
                }
                        my_log(LOG_ERR, "open(): %s (%s)\n", cur_output_file, strerror(errno));
                        exit(1);
                }