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 684e8a801fd4e3413e7ae9c3847d6b710fe0b816..caa594385340f3e6476a15a93b537a49a13aa4a0 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);
 }