summaryrefslogtreecommitdiff
path: root/src/udev/udevd.c
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-11-22 00:51:29 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-11-22 10:54:38 +0100
commitd4e98880e9e2118831f23b4572eae698b4dd27fb (patch)
treea65843df5a816e175a6aa5640bb58a3745f68692 /src/udev/udevd.c
parent886cf317c4cace1874e251e54bfe5d1e01d6591a (diff)
downloadsystemd-d4e98880e9e2118831f23b4572eae698b4dd27fb.tar.gz
Also drop a few more unnecessary uses of synthethic errno
Diffstat (limited to 'src/udev/udevd.c')
-rw-r--r--src/udev/udevd.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/udev/udevd.c b/src/udev/udevd.c
index 6e7bd83d11..db33de3c5f 100644
--- a/src/udev/udevd.c
+++ b/src/udev/udevd.c
@@ -793,8 +793,7 @@ static int on_exit_timeout(sd_event_source *s, uint64_t usec, void *userdata) {
assert(manager);
- log_error_errno(ETIMEDOUT, "Giving up waiting for workers to finish.");
-
+ log_error("Giving up waiting for workers to finish.");
sd_event_exit(manager->event, -ETIMEDOUT);
return 1;
@@ -956,7 +955,7 @@ static int on_worker(sd_event_source *s, int fd, uint32_t revents, void *userdat
return log_error_errno(errno, "Failed to receive message: %m");
} else if (size != sizeof(struct worker_message)) {
- log_warning_errno(EIO, "Ignoring worker message with invalid size %zi bytes", size);
+ log_warning("Ignoring worker message with invalid size %zi bytes", size);
continue;
}
@@ -968,7 +967,7 @@ static int on_worker(sd_event_source *s, int fd, uint32_t revents, void *userdat
}
if (!ucred || ucred->pid <= 0) {
- log_warning_errno(EIO, "Ignoring worker message without valid PID");
+ log_warning("Ignoring worker message without valid PID");
continue;
}