summaryrefslogtreecommitdiff
path: root/backport-main-pass-the-right-error-variable.patch
diff options
context:
space:
mode:
Diffstat (limited to 'backport-main-pass-the-right-error-variable.patch')
-rw-r--r--backport-main-pass-the-right-error-variable.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/backport-main-pass-the-right-error-variable.patch b/backport-main-pass-the-right-error-variable.patch
new file mode 100644
index 0000000..117d28a
--- /dev/null
+++ b/backport-main-pass-the-right-error-variable.patch
@@ -0,0 +1,25 @@
+From 56d0ed476290b51d8e3eb305a8fbfdfe7a873be8 Mon Sep 17 00:00:00 2001
+From: rpm-build <rpm-build>
+Date: Tue, 21 May 2024 16:58:39 +0800
+Subject: [PATCH] main: pass the right error variable
+
+---
+ src/core/main.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/core/main.c b/src/core/main.c
+index 534c14a..a63e954 100644
+--- a/src/core/main.c
++++ b/src/core/main.c
+@@ -2517,7 +2517,7 @@ static void setenv_manager_environment(void) {
+
+ r = putenv_dup(*p, true);
+ if (r < 0)
+- log_warning_errno(errno, "Failed to setenv \"%s\", ignoring: %m", *p);
++ log_warning_errno(r, "Failed to setenv \"%s\", ignoring: %m", *p);
+ }
+ }
+
+--
+2.27.0
+