From 080ffcb4a124bd77054a3909bbd5f14d62f79b62 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 11 Oct 2012 17:08:47 -0400 Subject: [PATCH] selinux: selabel_lookup_raw can return ENOENT and be a non failure mode. --- src/shared/label.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/label.c b/src/shared/label.c index 2062fc316..d353da57e 100644 --- a/src/shared/label.c +++ b/src/shared/label.c @@ -186,7 +186,7 @@ int label_context_set(const char *path, mode_t mode) { return 0; r = selabel_lookup_raw(label_hnd, &filecon, path, mode); - if (r < 0) + if (r < 0 && errno != ENOENT) r = -errno; else if (r == 0) { r = setfscreatecon(filecon); -- 2.30.2