From 770b1923dc7735c2681c9976201569896feb74d9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 15 Apr 2008 17:36:11 +0200 Subject: net conf: simplify logic in test output of net conf import. Michael (This used to be commit 367c8b133b2f3e73155f20f689602909eef9827b) --- source3/utils/net_conf.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'source3/utils') diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 7d1658ba94..293485aab1 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -150,18 +150,14 @@ static WERROR import_process_service(struct smbconf_ctx *conf_ctx, TALLOC_CTX *mem_ctx = talloc_stackframe(); if (opt_testmode) { + const char *indent = ""; if (servicename != NULL) { d_printf("[%s]\n", servicename); - for (idx = 0; idx < num_params; idx++) { - d_printf("\t%s = %s\n", param_names[idx], - param_values[idx]); - } + indent = "\t"; } - else { - for (idx = 0; idx < num_params; idx++) { - d_printf("%s = %s\n", param_names[idx], - param_values[idx]); - } + for (idx = 0; idx < num_params; idx++) { + d_printf("%s%s = %s\n", indent, param_names[idx], + param_values[idx]); } d_printf("\n"); goto done; -- cgit