summaryrefslogtreecommitdiff
path: root/src/run
diff options
context:
space:
mode:
authorMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:19:16 +0100
committerMichal Schmidt <mschmidt@redhat.com>2014-11-28 13:29:21 +0100
commitda927ba997d68401563b927f92e6e40e021a8e5c (patch)
tree71764cd998aef07b8943c5206c9307a93ba9c528 /src/run
parent0a1beeb64207eaa88ab9236787b1cbc2f704ae14 (diff)
treewide: no need to negate errno for log_*_errno()
It corrrectly handles both positive and negative errno values.
Diffstat (limited to 'src/run')
-rw-r--r--src/run/run.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/run/run.c b/src/run/run.c
index 14d147c671..ea9454a0e5 100644
--- a/src/run/run.c
+++ b/src/run/run.c
@@ -499,7 +499,7 @@ static int start_transient_scope(
r = get_group_creds(&arg_exec_group, &gid);
if (r < 0) {
- log_error_errno(-r, "Failed to resolve group %s: %m", arg_exec_group);
+ log_error_errno(r, "Failed to resolve group %s: %m", arg_exec_group);
return r;
}
@@ -516,7 +516,7 @@ static int start_transient_scope(
r = get_user_creds(&arg_exec_user, &uid, &gid, &home, &shell);
if (r < 0) {
- log_error_errno(-r, "Failed to resolve user %s: %m", arg_exec_user);
+ log_error_errno(r, "Failed to resolve user %s: %m", arg_exec_user);
return r;
}
@@ -595,7 +595,7 @@ int main(int argc, char* argv[]) {
r = bus_open_transport_systemd(arg_transport, arg_host, arg_user, &bus);
if (r < 0) {
- log_error_errno(-r, "Failed to create bus connection: %m");
+ log_error_errno(r, "Failed to create bus connection: %m");
goto finish;
}