From: Andre Noll Date: Mon, 8 Jun 2009 07:31:15 +0000 (+0200) Subject: Increase width of uid column to 6. X-Git-Tag: v0.1.0~11 X-Git-Url: http://git.tuebingen.mpg.de/adu.git/log?p=adu.git;a=commitdiff_plain;h=b556b0ba35fde1f0e3d0a61856e1ab74774d5d23 Increase width of uid column to 6. This makes the user summary output look nicer if there are uids > 10000. --- diff --git a/select.c b/select.c index 9dda089..6ef2891 100644 --- a/select.c +++ b/select.c @@ -951,7 +951,7 @@ out: /** Default format string for user_list mode. */ #define USER_LIST_DFLT_FMT "%(size:r:5) %(files:r:5) %(dirname)\n" /** Default format string for user_summary mode. */ -#define USER_SUMMARY_DFLT_FMT "%(pw_name:l:16) %(uid:r:5) %(dirs:r:5) %(files:r:5) %(size:r:5)\n" +#define USER_SUMMARY_DFLT_FMT "%(pw_name:l:16) %(uid:r:6) %(dirs:r:5) %(files:r:5) %(size:r:5)\n" static int setup_format_string(char *fmt, struct format_info **fi) {