From: Zbigniew Jędrzejewski-Szmek Date: Tue, 24 Apr 2018 11:45:44 +0000 (+0200) Subject: Fix three uses of bogus errno value in logs (and returned value in one case) X-Git-Tag: v239~361^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4355f1c9da0843708426f5c2c8b85179b934a5c7;p=thirdparty%2Fsystemd.git Fix three uses of bogus errno value in logs (and returned value in one case) --- diff --git a/src/activate/activate.c b/src/activate/activate.c index eefea277208..d598965b477 100644 --- a/src/activate/activate.c +++ b/src/activate/activate.c @@ -186,7 +186,7 @@ static int exec_process(const char* name, char **argv, char **env, int start_fd, r = rearrange_stdio(start_fd, start_fd, STDERR_FILENO); /* invalidates start_fd on success + error */ if (r < 0) - return log_error_errno(errno, "Failed to move fd to stdin+stdout: %m"); + return log_error_errno(r, "Failed to move fd to stdin+stdout: %m"); } else { if (start_fd != SD_LISTEN_FDS_START) { diff --git a/src/core/bpf-firewall.c b/src/core/bpf-firewall.c index 22cd8e9158b..b830b393b33 100644 --- a/src/core/bpf-firewall.c +++ b/src/core/bpf-firewall.c @@ -691,13 +691,14 @@ int bpf_firewall_supported(void) { 1, BPF_F_NO_PREALLOC); if (fd < 0) { - log_debug_errno(r, "Can't allocate BPF LPM TRIE map, BPF firewalling is not supported: %m"); + log_debug_errno(fd, "Can't allocate BPF LPM TRIE map, BPF firewalling is not supported: %m"); return supported = BPF_FIREWALL_UNSUPPORTED; } safe_close(fd); - if (bpf_program_new(BPF_PROG_TYPE_CGROUP_SKB, &program) < 0) { + r = bpf_program_new(BPF_PROG_TYPE_CGROUP_SKB, &program); + if (r < 0) { log_debug_errno(r, "Can't allocate CGROUP SKB BPF program, BPF firewalling is not supported: %m"); return supported = BPF_FIREWALL_UNSUPPORTED; }