]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
UBUNTU: ubuntu: vbox -- update to 5.2.6-dfsg-5
authorSeth Forshee <seth.forshee@canonical.com>
Tue, 27 Feb 2018 16:16:32 +0000 (10:16 -0600)
committerSeth Forshee <seth.forshee@canonical.com>
Wed, 28 Feb 2018 14:46:54 +0000 (08:46 -0600)
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
ubuntu/vbox/BOM
ubuntu/vbox/vboxsf/utils.c

index a713158e6f43d69d80f86446546c53e5d8c8ddb2..b7ec8471a8f4a8be339de318bb493dec5c2a4d8f 100644 (file)
@@ -1,2 +1,2 @@
-Source: http://ports.ubuntu.com/pool/multiverse/v/virtualbox/virtualbox-guest-dkms_5.2.6-dfsg-2_all.deb
-Version: 5.2.6-dfsg-2
+Source: http://ports.ubuntu.com/pool/multiverse/v/virtualbox/virtualbox-guest-dkms_5.2.6-dfsg-5_all.deb
+Version: 5.2.6-dfsg-5
index 749205ab18f9aa69220e2644dd5fb55efb255956..187ba2efffa1e333f8695fa581622dfee6a7df33 100644 (file)
@@ -79,10 +79,7 @@ void sf_init_inode(struct sf_glob_info *sf_g, struct inode *inode,
     attr = &info->Attr;
 
 #define mode_set(r) attr->fMode & (RTFS_UNIX_##r) ? (S_##r) : 0;
-    mode  = mode_set(ISUID);
-    mode |= mode_set(ISGID);
-
-    mode |= mode_set(IRUSR);
+    mode  = mode_set(IRUSR);
     mode |= mode_set(IWUSR);
     mode |= mode_set(IXUSR);
 
@@ -360,9 +357,7 @@ int sf_setattr(struct dentry *dentry, struct iattr *iattr)
         RT_ZERO(info);
         if (iattr->ia_valid & ATTR_MODE)
         {
-            info.Attr.fMode  = mode_set(ISUID);
-            info.Attr.fMode |= mode_set(ISGID);
-            info.Attr.fMode |= mode_set(IRUSR);
+            info.Attr.fMode  = mode_set(IRUSR);
             info.Attr.fMode |= mode_set(IWUSR);
             info.Attr.fMode |= mode_set(IXUSR);
             info.Attr.fMode |= mode_set(IRGRP);