]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
userdbctl: fix arrow direction
authorYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 16 Sep 2022 02:57:45 +0000 (11:57 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 16 Sep 2022 11:48:53 +0000 (20:48 +0900)
src/userdb/userdbctl.c

index 285d2453193066e877830daa867c3969b21dabcd..362c29585fbe2c7bc2b2564d5690a10a818dc3bd 100644 (file)
@@ -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();