Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
backport-main-pass-the-right-error-variable.patch 746 Bytes
Copy Edit Raw Blame History
dfh authored 2024-05-21 17:03 . main: pass the right error variable
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化