46 lines
1.8 KiB
Diff
46 lines
1.8 KiB
Diff
|
From 8f84713d297fcba39b65e7409ec114009896c3ff Mon Sep 17 00:00:00 2001
|
||
|
From: Lennart Poettering <lennart@poettering.net>
|
||
|
Date: Fri, 4 Oct 2013 17:01:37 +0200
|
||
|
Subject: [PATCH] manager: when verifying whether clients may change
|
||
|
environment using selinux check for "reload" rather "reboot"
|
||
|
|
||
|
This appears to be a copy/paste error.
|
||
|
---
|
||
|
src/core/dbus-manager.c | 6 +++---
|
||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||
|
|
||
|
diff --git a/src/core/dbus-manager.c b/src/core/dbus-manager.c
|
||
|
index 676a07f..8f4d017 100644
|
||
|
--- a/src/core/dbus-manager.c
|
||
|
+++ b/src/core/dbus-manager.c
|
||
|
@@ -1397,7 +1397,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
|
||
|
_cleanup_strv_free_ char **l = NULL;
|
||
|
char **e = NULL;
|
||
|
|
||
|
- SELINUX_ACCESS_CHECK(connection, message, "reboot");
|
||
|
+ SELINUX_ACCESS_CHECK(connection, message, "reload");
|
||
|
|
||
|
r = bus_parse_strv(message, &l);
|
||
|
if (r == -ENOMEM)
|
||
|
@@ -1424,7 +1424,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
|
||
|
_cleanup_strv_free_ char **l = NULL;
|
||
|
char **e = NULL;
|
||
|
|
||
|
- SELINUX_ACCESS_CHECK(connection, message, "reboot");
|
||
|
+ SELINUX_ACCESS_CHECK(connection, message, "reload");
|
||
|
|
||
|
r = bus_parse_strv(message, &l);
|
||
|
if (r == -ENOMEM)
|
||
|
@@ -1452,7 +1452,7 @@ static DBusHandlerResult bus_manager_message_handler(DBusConnection *connection,
|
||
|
char **f = NULL;
|
||
|
DBusMessageIter iter;
|
||
|
|
||
|
- SELINUX_ACCESS_CHECK(connection, message, "reboot");
|
||
|
+ SELINUX_ACCESS_CHECK(connection, message, "reload");
|
||
|
|
||
|
if (!dbus_message_iter_init(message, &iter))
|
||
|
goto oom;
|
||
|
--
|
||
|
1.8.4.652.g0d6e0ce
|
||
|
|