803fb7
From 5633544097b9c3bf3d63ef3be9e7db5d4e1f49dc Mon Sep 17 00:00:00 2001
803fb7
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
803fb7
Date: Sun, 8 Mar 2015 11:11:50 -0400
803fb7
Subject: [PATCH] sd-journal: return error when we cannot open a file
803fb7
803fb7
Lack of this caused journalctl not to display a hint about missing groups
803fb7
properly when the user lacks permissions.
803fb7
803fb7
(cherry picked from commit 7b300be75e6d5755778dd7da63e7147866f21351)
803fb7
---
803fb7
 src/journal/sd-journal.c | 2 +-
803fb7
 1 file changed, 1 insertion(+), 1 deletion(-)
803fb7
803fb7
diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c
803fb7
index 9b57e5945..9b9e8ac85 100644
803fb7
--- a/src/journal/sd-journal.c
803fb7
+++ b/src/journal/sd-journal.c
803fb7
@@ -1248,7 +1248,7 @@ static int add_file(sd_journal *j, const char *prefix, const char *filename) {
803fb7
         r = add_any_file(j, path);
803fb7
         if (r == -ENOENT)
803fb7
                 return 0;
803fb7
-        return 0;
803fb7
+        return r;
803fb7
 }
803fb7
 
803fb7
 static int remove_file(sd_journal *j, const char *prefix, const char *filename) {