glib r7324 - branches/glib-2-16/gio
- From: lminier svn gnome org
- To: svn-commits-list gnome org
- Subject: glib r7324 - branches/glib-2-16/gio
- Date: Fri, 8 Aug 2008 09:33:59 +0000 (UTC)
Author: lminier
Date: Fri Aug 8 09:33:59 2008
New Revision: 7324
URL: http://svn.gnome.org/viewvc/glib?rev=7324&view=rev
Log:
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
Modified:
branches/glib-2-16/gio/ChangeLog
branches/glib-2-16/gio/glocalfile.c
Modified: branches/glib-2-16/gio/glocalfile.c
==============================================================================
--- branches/glib-2-16/gio/glocalfile.c (original)
+++ branches/glib-2-16/gio/glocalfile.c Fri Aug 8 09:33:59 2008
@@ -1978,7 +1978,7 @@
{
GLocalFile *local = G_LOCAL_FILE (file);
- if (g_mkdir (local->filename, 0755) == -1)
+ if (g_mkdir (local->filename, 0777) == -1)
{
int errsv = errno;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]