From: Lennart Poettering Date: Wed, 23 Oct 2024 20:34:34 +0000 (+0200) Subject: userdbctl: set shell/home cell type to TABLE_PATH X-Git-Tag: v257-rc1~145^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c17a76982a39421530a56cd943cdc85125e8f10f;p=thirdparty%2Fsystemd.git userdbctl: set shell/home cell type to TABLE_PATH This only matters for sorting, and we currently don't support sorting by path, hence this is of no real effect, but it certainly is more correct. --- diff --git a/src/userdb/userdbctl.c b/src/userdb/userdbctl.c index 321edc28c7a..d74251fd86e 100644 --- a/src/userdb/userdbctl.c +++ b/src/userdb/userdbctl.c @@ -121,8 +121,8 @@ static int show_user(UserRecord *ur, Table *table) { TABLE_UID, ur->uid, TABLE_GID, user_record_gid(ur), TABLE_STRING, empty_to_null(ur->real_name), - TABLE_STRING, user_record_home_directory(ur), - TABLE_STRING, sh, + TABLE_PATH, user_record_home_directory(ur), + TABLE_PATH, sh, TABLE_SET_COLOR, shell_to_color(sh), TABLE_INT, 0); if (r < 0)