From: Karel Zak Date: Fri, 19 Nov 2021 11:55:54 +0000 (+0100) Subject: lslogins: remove unwanted debug message X-Git-Tag: v2.38-rc1~156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=93c53207c08d044bddae7b9d559c80affbd449c6;p=thirdparty%2Futil-linux.git lslogins: remove unwanted debug message Signed-off-by: Karel Zak --- diff --git a/login-utils/lslogins.c b/login-utils/lslogins.c index 9431a50bb7..c37df90965 100644 --- a/login-utils/lslogins.c +++ b/login-utils/lslogins.c @@ -562,9 +562,6 @@ static int get_sgroups(gid_t **list, size_t *len, struct passwd *pwd) *list = xcalloc(1, ngroups * sizeof(gid_t)); -fprintf(stderr, "KZAK>>> alloc '%p' for %s\n", *list, pwd->pw_name); - - /* now for the actual list of GIDs */ if (-1 == getgrouplist(pwd->pw_name, pwd->pw_gid, *list, &ngroups)) return -1;