src/graph_list.c: Supply create mode to open(2).
authorFlorian Forster <ff@octo.it>
Wed, 28 Jul 2010 08:30:35 +0000 (10:30 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Wed, 28 Jul 2010 08:30:35 +0000 (10:30 +0200)
src/graph_list.c

index fd0dca7..7327683 100644 (file)
@@ -264,7 +264,8 @@ static int gl_dump (void) /* {{{ */
   int status;
   size_t i;
 
-  fd = open (CACHE_FILE, O_WRONLY | O_TRUNC | O_CREAT);
+  fd = open (CACHE_FILE, O_WRONLY | O_TRUNC | O_CREAT,
+      S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH);
   if (fd < 0)
   {
     fprintf (stderr, "gl_dump: open(2) failed with status %i\n", errno);