1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

Remove trailing withespace from wbinfo -m which breaks gdm auth.

Signed-off-by: Andreas Schneider <anschneider@suse.de>
This commit is contained in:
Andreas Schneider 2008-07-21 11:52:10 +02:00 committed by Jeremy Allison
parent 1500401967
commit 12848e8eb9

View File

@ -359,10 +359,11 @@ static bool wbinfo_list_domains(bool list_all_domains, bool verbose)
}
for (i=0; i<num_domains; i++) {
d_printf("%-16s", domain_list[i].short_name);
if (!print_all) {
d_printf("\n");
if (print_all) {
d_printf("%-16s", domain_list[i].short_name);
} else {
d_printf("%s", domain_list[i].short_name);
d_printf("\n");
continue;
}