I can confirm this bug. If (!) there is indeed ck-histroy used or the
code from ck-history then this is a oneliner:

To fix ck-history:
http://cgit.freedesktop.org/ConsoleKit/tree/tools/ck-history.c#n772

just change
                g_print ("%-8.8s %u\n", username, data->count);

to:
                g_print ("%s %u\n", username, data->count);

or even better: (swap username and datacount to omit padding issues and retain 
the tab-like format)
                g_print ("%8u %s\n", data->count, username);

-- 
Network users with longer than 8 character usernames do not show up in user 
list (possible fix included)
https://bugs.launchpad.net/bugs/476811
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to