Bug 593406 - Permissions set to 777 after copying via Nautilus
authorBenjamin Otte <otte@gnome.org>
Tue, 1 Sep 2009 19:26:08 +0000 (21:26 +0200)
committerBenjamin Otte <otte@gnome.org>
Tue, 1 Sep 2009 19:33:11 +0000 (21:33 +0200)
Only fail to set the permissions when the actual file is a symlink.
The previous fix failed for every file when NOFOLLOW_SYMLINKS was set.

gio/glocalfileinfo.c

index b4e77d9253da8575342f26e31d7853d36aaca15b..7182ec54917c4efdf5e50be92bd532e31d754bfb 100644 (file)
@@ -1874,20 +1874,31 @@ set_unix_mode (char                       *filename,
               GError                    **error)
 {
   guint32 val;
+  int res = 0;
   
   if (!get_uint32 (value, &val, error))
     return FALSE;
 
 #ifdef HAVE_SYMLINK
   if (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) {
-    g_set_error_literal (error, G_IO_ERROR,
-                         G_IO_ERROR_NOT_SUPPORTED,
-                         _("Cannot set permissions on symlinks"));
-    return FALSE;
+    struct stat statbuf;
+    /* Calling chmod on a symlink changes permissions on the symlink.
+     * We don't want to do this, so we need to check for a symlink */
+    res = g_lstat (filename, &statbuf);
+    if (res == 0 && S_ISLNK (statbuf.st_mode))
+      {
+        g_set_error_literal (error, G_IO_ERROR,
+                             G_IO_ERROR_NOT_SUPPORTED,
+                             _("Cannot set permissions on symlinks"));
+        return FALSE;
+      }
   }
 #endif
 
-  if (g_chmod (filename, val) == -1)
+  if (res == 0)
+    res = g_chmod (filename, val);
+
+  if (res == -1)
     {
       int errsv = errno;