1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

Fix bug #4 for net rap. Allow more than 50 chars for long form listings of users and groups.

(This used to be commit dcc6d9e76c737400aaffdd4f261fd0f191aaeea8)
This commit is contained in:
Jim McDonough 2003-05-09 12:58:28 +00:00
parent 60fa5c308b
commit 62c3744709

View File

@ -599,7 +599,7 @@ static void long_user_fn(const char *user_name, const char *comment,
const char * home_dir, const char * logon_script,
void *state)
{
d_printf("%-21.21s %-50.50s\n",
d_printf("%-21.21s %s\n",
user_name, comment);
}
@ -717,7 +717,7 @@ int net_rap_group_usage(int argc, const char **argv)
static void long_group_fn(const char *group_name, const char *comment,
void *state)
{
d_printf("%-21.21s %-50.50s\n", group_name, comment);
d_printf("%-21.21s %s\n", group_name, comment);
}
static void group_fn(const char *group_name, const char *comment, void *state)