mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 18:23:32 +08:00
tree-wide: fix incorrect uses of %m
In those cases errno was not set, so we would be logging some unrelated error or "Success".
This commit is contained in:
parent
6e4177315f
commit
35bca925f9
@ -355,7 +355,7 @@ static int raw_import_process(RawImport *i) {
|
||||
}
|
||||
if (l == 0) {
|
||||
if (i->compress.type == IMPORT_COMPRESS_UNKNOWN) {
|
||||
log_error("Premature end of file: %m");
|
||||
log_error("Premature end of file.");
|
||||
r = -EIO;
|
||||
goto finish;
|
||||
}
|
||||
@ -369,7 +369,7 @@ static int raw_import_process(RawImport *i) {
|
||||
if (i->compress.type == IMPORT_COMPRESS_UNKNOWN) {
|
||||
r = import_uncompress_detect(&i->compress, i->buffer, i->buffer_size);
|
||||
if (r < 0) {
|
||||
log_error("Failed to detect file compression: %m");
|
||||
log_error_errno(r, "Failed to detect file compression: %m");
|
||||
goto finish;
|
||||
}
|
||||
if (r == 0) /* Need more data */
|
||||
|
@ -284,7 +284,7 @@ static int tar_import_process(TarImport *i) {
|
||||
}
|
||||
if (l == 0) {
|
||||
if (i->compress.type == IMPORT_COMPRESS_UNKNOWN) {
|
||||
log_error("Premature end of file: %m");
|
||||
log_error("Premature end of file.");
|
||||
r = -EIO;
|
||||
goto finish;
|
||||
}
|
||||
@ -298,7 +298,7 @@ static int tar_import_process(TarImport *i) {
|
||||
if (i->compress.type == IMPORT_COMPRESS_UNKNOWN) {
|
||||
r = import_uncompress_detect(&i->compress, i->buffer, i->buffer_size);
|
||||
if (r < 0) {
|
||||
log_error("Failed to detect file compression: %m");
|
||||
log_error_errno(r, "Failed to detect file compression: %m");
|
||||
goto finish;
|
||||
}
|
||||
if (r == 0) /* Need more data */
|
||||
|
@ -525,8 +525,6 @@ int main(int argc, char *argv[]) {
|
||||
void *p;
|
||||
int r, q;
|
||||
|
||||
zero(c);
|
||||
|
||||
c.automatic_integer_property = 4711;
|
||||
assert_se(c.automatic_string_property = strdup("dudeldu"));
|
||||
|
||||
|
@ -2029,7 +2029,7 @@ static int determine_names(void) {
|
||||
if (r < 0)
|
||||
return log_error_errno(r, "Failed to find image for machine '%s': %m", arg_machine);
|
||||
if (r == 0) {
|
||||
log_error("No image for machine '%s': %m", arg_machine);
|
||||
log_error("No image for machine '%s'.", arg_machine);
|
||||
return -ENOENT;
|
||||
}
|
||||
|
||||
|
@ -115,7 +115,7 @@ int main(int argc, char *argv[]) {
|
||||
in_fd = SD_LISTEN_FDS_START;
|
||||
out_fd = SD_LISTEN_FDS_START;
|
||||
} else {
|
||||
log_error("Illegal number of file descriptors passed\n");
|
||||
log_error("Illegal number of file descriptors passed.");
|
||||
goto finish;
|
||||
}
|
||||
|
||||
@ -190,7 +190,7 @@ int main(int argc, char *argv[]) {
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
_cleanup_(sd_bus_message_unrefp)sd_bus_message *m = NULL;
|
||||
_cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
|
||||
int events_a, events_b, fd;
|
||||
uint64_t timeout_a, timeout_b, t;
|
||||
struct timespec _ts, *ts;
|
||||
|
@ -31,7 +31,7 @@ int main(int argc, char* argv[]) {
|
||||
|
||||
r = loopback_setup();
|
||||
if (r < 0)
|
||||
log_error("loopback: %m");
|
||||
log_error_errno(r, "loopback: %m");
|
||||
|
||||
return r >= 0 ? EXIT_SUCCESS : EXIT_FAILURE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user