From: Ruediger Meier <ruediger.meier@xxxxxxxxxxx> BTW avoid using the defined sizes. Signed-off-by: Ruediger Meier <ruediger.meier@xxxxxxxxxxx> --- login-utils/utmpdump.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/login-utils/utmpdump.c b/login-utils/utmpdump.c index 8f438b0..4a85afa 100644 --- a/login-utils/utmpdump.c +++ b/login-utils/utmpdump.c @@ -112,10 +112,12 @@ static void print_utline(struct utmp *ut, FILE *out) cleanse(ut->ut_line); cleanse(ut->ut_host); - /* pid id user line host addr time */ + /* type pid id user line host addr time */ fprintf(out, "[%d] [%05d] [%-4.4s] [%-*.*s] [%-*.*s] [%-*.*s] [%-15s] [%s]\n", - ut->ut_type, ut->ut_pid, ut->ut_id, 8, UT_NAMESIZE, ut->ut_user, - 12, UT_LINESIZE, ut->ut_line, 20, UT_HOSTSIZE, ut->ut_host, + ut->ut_type, ut->ut_pid, ut->ut_id, + 8, (int)sizeof(ut->ut_user), ut->ut_user, + 12, (int)sizeof(ut->ut_line), ut->ut_line, + 20, (int)sizeof(ut->ut_host), ut->ut_host, addr_string, time_string); } -- 1.8.5.6 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html