summaryrefslogtreecommitdiff
path: root/src/userdb
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2022-09-16 11:57:45 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2022-09-16 20:48:53 +0900
commitfb76e6a710f08b4c700ffaa7bc0cc7d7396911ea (patch)
tree58638cd86942e83b9e9eb38380dad6559a5fe47c /src/userdb
parent3498609f0837813b58698e027d2750f768a238b5 (diff)
downloadsystemd-fb76e6a710f08b4c700ffaa7bc0cc7d7396911ea.tar.gz
userdbctl: fix arrow direction
Diffstat (limited to 'src/userdb')
-rw-r--r--src/userdb/userdbctl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/userdb/userdbctl.c b/src/userdb/userdbctl.c
index 285d245319..362c29585f 100644
--- a/src/userdb/userdbctl.c
+++ b/src/userdb/userdbctl.c
@@ -276,9 +276,9 @@ static int add_unavailable_uid(Table *table, uid_t start, uid_t end) {
return table_log_add_error(r);
free(name);
- name = strjoin(special_glyph(SPECIAL_GLYPH_ARROW_DOWN),
+ name = strjoin(special_glyph(SPECIAL_GLYPH_ARROW_UP),
" end unavailable users ",
- special_glyph(SPECIAL_GLYPH_ARROW_DOWN));
+ special_glyph(SPECIAL_GLYPH_ARROW_UP));
if (!name)
return log_oom();
@@ -629,9 +629,9 @@ static int add_unavailable_gid(Table *table, uid_t start, uid_t end) {
return table_log_add_error(r);
free(name);
- name = strjoin(special_glyph(SPECIAL_GLYPH_ARROW_DOWN),
+ name = strjoin(special_glyph(SPECIAL_GLYPH_ARROW_UP),
" end unavailable groups ",
- special_glyph(SPECIAL_GLYPH_ARROW_DOWN));
+ special_glyph(SPECIAL_GLYPH_ARROW_UP));
if (!name)
return log_oom();