mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-05 22:12:34 +00:00
Fixed the directory permission Bug #128637
Original commit message from CVS: Fixed the directory permission Bug #128637
This commit is contained in:
parent
22c9d0f1a6
commit
b312b35b25
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue