summaryrefslogtreecommitdiff
path: root/testing/udev
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-08-03 04:50:40 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-08-03 04:50:40 +0000
commit991d38faccf4e1fb27f31f236ad58ee840103734 (patch)
tree38dd960b48df86472b58d3904caa122aaf06da41 /testing/udev
parentbf35116f9d203dcafce808a6c7b3dd5a0db8afbc (diff)
Wed Aug 3 04:50:40 UTC 2011
Diffstat (limited to 'testing/udev')
-rw-r--r--testing/udev/static-node-permission.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/testing/udev/static-node-permission.patch b/testing/udev/static-node-permission.patch
deleted file mode 100644
index 3d9a8722c..000000000
--- a/testing/udev/static-node-permission.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 36acdbcc776822624103eff7c80a9468317918ac Mon Sep 17 00:00:00 2001
-From: Kay Sievers <kay.sievers@vrfy.org>
-Date: Mon, 11 Jul 2011 22:56:37 +0200
-Subject: [PATCH] udevd: fix (recently) broken static node permission setting
-
-Many thanks to Tom Gundersen for identifying the issue.
----
- udev/udev-rules.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/udev/udev-rules.c b/udev/udev-rules.c
-index d16c1f9..7db0767 100644
---- a/udev/udev-rules.c
-+++ b/udev/udev-rules.c
-@@ -2721,7 +2721,7 @@ void udev_rules_apply_static_dev_perms(struct udev_rules *rules)
- struct stat stats;
-
- /* we assure, that the permissions tokens are sorted before the static token */
-- if (uid == 0 && gid == 0)
-+ if (mode == 0 && uid == 0 && gid == 0)
- goto next;
- util_strscpyl(filename, sizeof(filename), udev_get_dev_path(rules->udev), "/",
- &rules->buf[cur->key.value_off], NULL);
---
-1.7.6
-