chiark / gitweb /
selinux: clean up selinux label function naming
[elogind.git] / src / core / namespace.c
index 6dd7a4f25ec9f48a698d4f5a33dcdbc51d86b885..4bc288de1d5065e6a51a45b351a2469743d03f77 100644 (file)
@@ -225,9 +225,9 @@ static int mount_dev(BindMount *m) {
                         goto fail;
                 }
 
-                mac_selinux_context_set(d, st.st_mode);
+                mac_selinux_create_file_prepare(d, st.st_mode);
                 r = mknod(dn, st.st_mode, st.st_rdev);
-                mac_selinux_context_clear();
+                mac_selinux_create_file_clear();
 
                 if (r < 0) {
                         r = -errno;