diff options
-rw-r--r-- | source3/nsswitch/wbinfo.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/nsswitch/wbinfo.c b/source3/nsswitch/wbinfo.c index 2fb46c4a2f..c1d41a53fd 100644 --- a/source3/nsswitch/wbinfo.c +++ b/source3/nsswitch/wbinfo.c @@ -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; } |