diff options
Diffstat (limited to 'init/property_service.cpp')
-rw-r--r-- | init/property_service.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/init/property_service.cpp b/init/property_service.cpp index 5c1ae7912..8c95f15f9 100644 --- a/init/property_service.cpp +++ b/init/property_service.cpp @@ -175,11 +175,7 @@ static int property_set_impl(const char* name, const char* value) { if (!is_legal_property_name(name, namelen)) return -1; if (valuelen >= PROP_VALUE_MAX) return -1; - if (strcmp("selinux.reload_policy", name) == 0 && strcmp("1", value) == 0) { - if (selinux_reload_policy() != 0) { - ERROR("Failed to reload policy\n"); - } - } else if (strcmp("selinux.restorecon_recursive", name) == 0 && valuelen > 0) { + if (strcmp("selinux.restorecon_recursive", name) == 0 && valuelen > 0) { if (restorecon_recursive(value) != 0) { ERROR("Failed to restorecon_recursive %s\n", value); } |