From 99c89da02d52619bb05633b70f07fdd353ea12ce Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 25 Jun 2018 13:56:27 +0900 Subject: [PATCH] portable: fix error handling --- src/portable/portable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/portable/portable.c b/src/portable/portable.c index eb5daf3b0e1..3491723aa14 100644 --- a/src/portable/portable.c +++ b/src/portable/portable.c @@ -782,7 +782,7 @@ static int install_profile_dropin( r = find_profile(profile, m->name, &from); if (r < 0) { - if (r != ENOENT) + if (r != -ENOENT) return log_debug_errno(errno, "Profile '%s' is not accessible: %m", profile); log_debug_errno(errno, "Skipping link to profile '%s', as it does not exist: %m", profile); -- 2.39.2