Blame SOURCES/0019-tmpfiles-Fix-parse_acl-error-message.patch
|
|
1ff636 |
From 3d9f88326fefe4bf8f5ed4b1210c6b563a3eecff Mon Sep 17 00:00:00 2001
|
|
|
1ff636 |
From: Martin Pitt <martin.pitt@ubuntu.com>
|
|
|
1ff636 |
Date: Tue, 17 Feb 2015 12:47:51 +0100
|
|
|
1ff636 |
Subject: [PATCH] tmpfiles: Fix parse_acl error message
|
|
|
1ff636 |
|
|
|
1ff636 |
parse_acl() returns the error instead of setting errno.
|
|
|
1ff636 |
|
|
|
1ff636 |
(cherry picked from commit 484adfd914504cd7e95867cea20ca7af71b888f2)
|
|
|
1ff636 |
---
|
|
|
1ff636 |
src/tmpfiles/tmpfiles.c | 2 +-
|
|
|
1ff636 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
1ff636 |
|
|
|
1ff636 |
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c
|
|
|
c62b8e |
index c948d4d218..88ba7e46a2 100644
|
|
|
1ff636 |
--- a/src/tmpfiles/tmpfiles.c
|
|
|
1ff636 |
+++ b/src/tmpfiles/tmpfiles.c
|
|
|
1ff636 |
@@ -689,7 +689,7 @@ static int get_acls_from_arg(Item *item) {
|
|
|
1ff636 |
* afterwards, so the mask can be added now if necessary. */
|
|
|
1ff636 |
r = parse_acl(item->argument, &item->acl_access, &item->acl_default, !item->force);
|
|
|
1ff636 |
if (r < 0)
|
|
|
1ff636 |
- log_warning_errno(errno, "Failed to parse ACL \"%s\": %m. Ignoring",
|
|
|
1ff636 |
+ log_warning_errno(r, "Failed to parse ACL \"%s\": %m. Ignoring",
|
|
|
1ff636 |
item->argument);
|
|
|
1ff636 |
#else
|
|
|
1ff636 |
log_warning_errno(ENOSYS, "ACLs are not supported. Ignoring");
|