]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
selinux: Use raw contexts 2
authorMartin Kletzander <mkletzan@redhat.com>
Mon, 15 Oct 2012 12:04:36 +0000 (14:04 +0200)
committerCole Robinson <crobinso@redhat.com>
Sat, 27 Oct 2012 18:56:12 +0000 (14:56 -0400)
In commit 9674f2c637114fa6ac0680fe5658a41a62bb34a8, I forgot to change
selabel_lookup with the other functions, so this one-liner does exactly
that.
(cherry picked from commit 6676c1fc8fb297de998f96862cbe2396355b2777)

src/security/security_selinux.c

index f7c675ea97f779012c592ef2dc4848492ecc8fcb..29fb2de136fcfd6dc913fe3a15abe059e4f33b63 100644 (file)
@@ -901,7 +901,7 @@ getContext(const char *newpath, mode_t mode, security_context_t *fcon)
     if (handle == NULL)
         return -1;
 
-    ret = selabel_lookup(handle, fcon, newpath, mode);
+    ret = selabel_lookup_raw(handle, fcon, newpath, mode);
     selabel_close(handle);
     return ret;
 #else