29 lines
969 B
Diff
29 lines
969 B
Diff
From 56a4ce2417ff74f82a48e3a5c6e36edad8d4bc6c Mon Sep 17 00:00:00 2001
|
|
From: Franck Bui <fbui@suse.com>
|
|
Date: Tue, 24 Sep 2019 18:33:54 +0200
|
|
Subject: [PATCH] shared/install: fix error codes returned by
|
|
install_context_apply()
|
|
|
|
Reference: https://github.com/systemd/systemd/commit/56a4ce2417ff74f82a48e3a5c6e36edad8d4bc6c
|
|
Conflict: NA
|
|
---
|
|
src/shared/install.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/shared/install.c b/src/shared/install.c
|
|
index 8f9cf4a2f4..0724dd96ee 100644
|
|
--- a/src/shared/install.c
|
|
+++ b/src/shared/install.c
|
|
@@ -1897,7 +1897,7 @@ static int install_context_apply(
|
|
|
|
q = install_info_traverse(scope, c, paths, i, flags, NULL);
|
|
if (q < 0) {
|
|
- unit_file_changes_add(changes, n_changes, r, i->name, NULL);
|
|
+ unit_file_changes_add(changes, n_changes, q, i->name, NULL);
|
|
return q;
|
|
}
|
|
|
|
--
|
|
2.23.0
|
|
|