Fixed the directory permission Bug #128637
authorWim Taymans <wim.taymans@gmail.com>
Sat, 13 Jan 2001 14:25:16 +0000 (14:25 +0000)
committerWim Taymans <wim.taymans@gmail.com>
Sat, 13 Jan 2001 14:25:16 +0000 (14:25 +0000)
Original commit message from CVS:
Fixed the directory permission Bug #128637

tools/gstreamer-register.c

index 684e8a8..caa5943 100644 (file)
@@ -86,7 +86,7 @@ static void move_file(const char * nameold, const char * namenew) {
 }
 
 static int make_dir(const char * dirname) {
-    mode_t mode = 0766;
+    mode_t mode = 0777;
     return !mkdir(dirname, mode);
 }