1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-01 09:47:35 +03:00

Also drop a few more unnecessary uses of synthethic errno

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2018-11-22 00:51:29 +01:00
parent 886cf317c4
commit d4e98880e9
3 changed files with 5 additions and 7 deletions

View File

@ -408,7 +408,7 @@ int journal_remote_handle_raw_source(
log_debug("%zu active sources remaining", s->active);
return 0;
} else if (r == -E2BIG) {
log_notice_errno(E2BIG, "Entry too big, skipped");
log_notice("Entry too big, skipped");
return 1;
} else if (r == -EAGAIN) {
return 0;

View File

@ -77,8 +77,7 @@ static size_t output_callback(char *buf,
if (nmemb && !u->answer) {
u->answer = strndup(buf, size*nmemb);
if (!u->answer)
log_warning_errno(ENOMEM, "Failed to store server answer (%zu bytes): %m",
size*nmemb);
log_warning("Failed to store server answer (%zu bytes): out of memory", size*nmemb);
}
return size * nmemb;

View File

@ -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;
}