summaryrefslogtreecommitdiffstats
path: root/src/journal-remote/journal-remote-main.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2023-06-14 10:13:08 +0200
committerLennart Poettering <lennart@poettering.net>2023-06-14 10:23:56 +0200
commite503019bc71c33495ddd7e4270c73f1f0a366834 (patch)
tree9812502b9d4f12993b6d9ff5d3ff2af7cd0c3d8c /src/journal-remote/journal-remote-main.c
parenttime-util,socket: accept both kinds of unicode µ symbols (diff)
downloadsystemd-e503019bc71c33495ddd7e4270c73f1f0a366834.tar.xz
systemd-e503019bc71c33495ddd7e4270c73f1f0a366834.zip
tree-wide: when in doubt use greek small letter mu rather than micro symbol
Doesn't really matter since the two unicode symbols are supposedly equivalent, but let's better follow the unicode recommendations to prefer greek small letter mu, as per: https://www.unicode.org/reports/tr25
Diffstat (limited to 'src/journal-remote/journal-remote-main.c')
-rw-r--r--src/journal-remote/journal-remote-main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/journal-remote/journal-remote-main.c b/src/journal-remote/journal-remote-main.c
index c5ecc2b844..db94644ceb 100644
--- a/src/journal-remote/journal-remote-main.c
+++ b/src/journal-remote/journal-remote-main.c
@@ -436,7 +436,7 @@ static int setup_microhttpd_server(RemoteServer *s,
MHD_OPTION_ARRAY, opts,
MHD_OPTION_END);
if (!d->daemon) {
- log_error("Failed to start µhttp daemon");
+ log_error("Failed to start μhttp daemon");
r = -EINVAL;
goto error;
}
@@ -446,14 +446,14 @@ static int setup_microhttpd_server(RemoteServer *s,
info = MHD_get_daemon_info(d->daemon, MHD_DAEMON_INFO_EPOLL_FD_LINUX_ONLY);
if (!info) {
- log_error("µhttp returned NULL daemon info");
+ log_error("μhttp returned NULL daemon info");
r = -EOPNOTSUPP;
goto error;
}
epoll_fd = info->listen_fd;
if (epoll_fd < 0) {
- log_error("µhttp epoll fd is invalid");
+ log_error("μhttp epoll fd is invalid");
r = -EUCLEAN;
goto error;
}