Timo Aaltonen pushed to branch ubuntu at X Strike Force / xserver / xorg-server
Commits:
-
3773ab0f
by Timo Aaltonen at 2018-06-06T11:15:57+03:00
3 changed files:
Changes:
| ... | ... | @@ -34,6 +34,13 @@ xorg-server (2:1.19.99.901-1) experimental; urgency=medium |
| 34 | 34 |
|
| 35 | 35 |
-- Timo Aaltonen <tjaalton@debian.org> Fri, 23 Mar 2018 18:18:38 +0200
|
| 36 | 36 |
|
| 37 |
+xorg-server (2:1.19.6-1ubuntu4) bionic; urgency=medium
|
|
| 38 |
+ |
|
| 39 |
+ * debian/patches/fix-default-permissions.patch: fix default permissions
|
|
| 40 |
+ when creating the log directory. (LP: #1735929)
|
|
| 41 |
+ |
|
| 42 |
+ -- Marc Deslauriers <marc.deslauriers@ubuntu.com> Fri, 13 Apr 2018 11:31:45 -0400
|
|
| 43 |
+ |
|
| 37 | 44 |
xorg-server (2:1.19.6-1ubuntu3) bionic; urgency=medium
|
| 38 | 45 |
|
| 39 | 46 |
* dri2-Sync-i965_pci_ids.h-from-Mesa.patch: Update i965_pci_ids.h to
|
| 1 |
+Description: fix default permissions when creating the log directory.
|
|
| 2 |
+Author: Marc Deslauriers <marc.deslauriers@canonical.com>
|
|
| 3 |
+Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/session-migration/+bug/1735929
|
|
| 4 |
+ |
|
| 5 |
+Index: xorg-server-1.19.6/hw/xfree86/common/xf86Helper.c
|
|
| 6 |
+===================================================================
|
|
| 7 |
+--- xorg-server-1.19.6.orig/hw/xfree86/common/xf86Helper.c 2018-04-13 11:30:50.090528041 -0400
|
|
| 8 |
++++ xorg-server-1.19.6/hw/xfree86/common/xf86Helper.c 2018-04-13 11:31:30.246621218 -0400
|
|
| 9 |
+@@ -1221,10 +1221,10 @@ static void xf86_mkdir_p(char *path)
|
|
| 10 |
+
|
|
| 11 |
+ while ((sep = strchr(sep + 1, '/'))) {
|
|
| 12 |
+ *sep = 0;
|
|
| 13 |
+- (void)mkdir(path, 0777);
|
|
| 14 |
++ (void)mkdir(path, 0700);
|
|
| 15 |
+ *sep = '/';
|
|
| 16 |
+ }
|
|
| 17 |
+- (void)mkdir(path, 0777);
|
|
| 18 |
++ (void)mkdir(path, 0700);
|
|
| 19 |
+ }
|
|
| 20 |
+
|
|
| 21 |
+ void
|
| ... | ... | @@ -22,3 +22,4 @@ no-nv.patch |
| 22 | 22 |
xf86-ignore-conflicting-rr-caps.patch
|
| 23 | 23 |
|
| 24 | 24 |
xi2-resize-touch.patch
|
| 25 |
+fix-default-permissions.patch
|