diff options
author | Michael Adam <obnox@samba.org> | 2008-03-26 14:46:43 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-26 14:55:06 +0100 |
commit | 0bdcc557ee4d52d266b7ec6dee5d2381c0601ce1 (patch) | |
tree | 04071d79e2e75bb192d5fff01d10999fba1c8405 | |
parent | 3253cffced724bc825da913e669b0331cbe7ac65 (diff) | |
download | samba-0bdcc557ee4d52d266b7ec6dee5d2381c0601ce1.tar.gz samba-0bdcc557ee4d52d266b7ec6dee5d2381c0601ce1.tar.bz2 samba-0bdcc557ee4d52d266b7ec6dee5d2381c0601ce1.zip |
net_conf: reformat - re-indent one function call.
Michael
(This used to be commit 9ef9d4c4e77523d7f3cc5fdac199559896e585bd)
-rw-r--r-- | source3/utils/net_conf.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c index 70827abfe1..630d01d0a0 100644 --- a/source3/utils/net_conf.c +++ b/source3/utils/net_conf.c @@ -272,8 +272,11 @@ static int net_conf_import(struct smbconf_ctx *conf_ctx, uint32_t num_shares, *num_params, sidx; werr = smbconf_get_config(txt_ctx, mem_ctx, - &num_shares, &share_names, - &num_params, ¶m_names, ¶m_values); + &num_shares, + &share_names, + &num_params, + ¶m_names, + ¶m_values); if (!W_ERROR_IS_OK(werr)) { goto done; } |