mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-23 10:42:11 +01:00
Merge r7323 from trunk
2008-08-08 Loïc Minier <lool@dooz.org> Bug 535124 – umask 002 not being applied for new directories, new files get the correct umask * glocalfile.c: (g_local_file_make_directory): Use 0777 instead of 0755 as umask svn path=/branches/glib-2-16/; revision=7324
This commit is contained in:
parent
0adb625876
commit
4ba8781eaf
@ -1,3 +1,11 @@
|
||||
2008-08-08 Loïc Minier <lool@dooz.org>
|
||||
|
||||
Bug 535124 – umask 002 not being applied for new directories, new
|
||||
files get the correct umask
|
||||
|
||||
* glocalfile.c: (g_local_file_make_directory): Use 0777 instead of
|
||||
0755 as umask
|
||||
|
||||
2008-07-19 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* === Released 2.16.5 ===
|
||||
|
@ -1978,7 +1978,7 @@ g_local_file_make_directory (GFile *file,
|
||||
{
|
||||
GLocalFile *local = G_LOCAL_FILE (file);
|
||||
|
||||
if (g_mkdir (local->filename, 0755) == -1)
|
||||
if (g_mkdir (local->filename, 0777) == -1)
|
||||
{
|
||||
int errsv = errno;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user