From 513412a69cdd44dc95f83de26bbca2a184121926 Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Fri, 8 Dec 2023 00:49:17 +0800 Subject: [PATCH] various: don't log synthetic EIO for fwrite Follow-up for f9568765d4d3d57de1ec01d85f0a0682920f4d10 --- src/creds/creds.c | 2 +- src/shared/edit-util.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/creds/creds.c b/src/creds/creds.c index 7a98a5dcd3..10d117118f 100644 --- a/src/creds/creds.c +++ b/src/creds/creds.c @@ -350,7 +350,7 @@ static int write_blob(FILE *f, const void *data, size_t size) { } if (fwrite(data, 1, size, f) != size) - return log_error_errno(SYNTHETIC_ERRNO(EIO), "Failed to write credential data: %m"); + return log_error_errno(SYNTHETIC_ERRNO(EIO), "Failed to write credential data."); r = print_newline(f, data, size); if (r < 0) diff --git a/src/shared/edit-util.c b/src/shared/edit-util.c index 2662b2bf1b..fb9bdbc160 100644 --- a/src/shared/edit-util.c +++ b/src/shared/edit-util.c @@ -206,7 +206,7 @@ static int create_edit_temp_file(EditFile *e, const char *contents, size_t conte if (e->context->stdin) { if (fwrite(contents, 1, contents_size, f) != contents_size) return log_error_errno(SYNTHETIC_ERRNO(EIO), - "Failed to copy input to temporary file '%s': %m", temp); + "Failed to copy input to temporary file '%s'.", temp); } else { r = populate_edit_temp_file(e, f, temp); if (r < 0)