summaryrefslogtreecommitdiff
path: root/src/sysupdate/sysupdate-resource.c
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2022-06-24 09:59:44 +0200
committerDavid Tardon <dtardon@redhat.com>2022-06-28 12:50:44 +0200
commit28e5e1e97f47067bce190ea6b3404907d63e4320 (patch)
tree5d008272d08a98fd87b7f4690372cd98f668150d /src/sysupdate/sysupdate-resource.c
parente2341b6bc325932b3f9f10874956952cbdbd6361 (diff)
downloadsystemd-28e5e1e97f47067bce190ea6b3404907d63e4320.tar.gz
tree-wide: allow ASCII fallback for … in logs
Diffstat (limited to 'src/sysupdate/sysupdate-resource.c')
-rw-r--r--src/sysupdate/sysupdate-resource.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sysupdate/sysupdate-resource.c b/src/sysupdate/sysupdate-resource.c
index edc524cc75..359b80ac1c 100644
--- a/src/sysupdate/sysupdate-resource.c
+++ b/src/sysupdate/sysupdate-resource.c
@@ -260,7 +260,8 @@ static int download_manifest(
if (pipe2(pfd, O_CLOEXEC) < 0)
return log_error_errno(errno, "Failed to allocate pipe: %m");
- log_info("%s Acquiring manifest file %s…", special_glyph(SPECIAL_GLYPH_DOWNLOAD), suffixed_url);
+ log_info("%s Acquiring manifest file %s%s", special_glyph(SPECIAL_GLYPH_DOWNLOAD),
+ suffixed_url, special_glyph(SPECIAL_GLYPH_ELLIPSIS));
r = safe_fork("(sd-pull)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_LOG, &pid);
if (r < 0)