summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2007-12-29 17:02:27 +0100
committerMichael Adam <obnox@samba.org>2007-12-29 17:02:27 +0100
commita6d6fbb73d56d3b96ccf55c1d028c5af00d83386 (patch)
tree266f5f48d0e0b5ac3218887065b8e48f9c6e4de5 /source3
parente8cb7cecf2dde62f271a37376cefa5179eb7b7bc (diff)
downloadsamba-a6d6fbb73d56d3b96ccf55c1d028c5af00d83386.tar.gz
samba-a6d6fbb73d56d3b96ccf55c1d028c5af00d83386.tar.bz2
samba-a6d6fbb73d56d3b96ccf55c1d028c5af00d83386.zip
Dont return count - 1 but count from libnet_smbconf_reg_get_values().
Michael (This used to be commit ded60dec7d75db7df485a159fb6bf628d8e24805)
Diffstat (limited to 'source3')
-rw-r--r--source3/libnet/libnet_conf.c2
-rw-r--r--source3/utils/net_conf.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/libnet/libnet_conf.c b/source3/libnet/libnet_conf.c
index 636e966a37..300ea916cd 100644
--- a/source3/libnet/libnet_conf.c
+++ b/source3/libnet/libnet_conf.c
@@ -354,7 +354,7 @@ static WERROR libnet_smbconf_reg_get_values(TALLOC_CTX *mem_ctx,
werr = WERR_OK;
- *num_values = count - 1;
+ *num_values = count;
if (count > 0) {
*value_names = talloc_move(mem_ctx, &tmp_valnames);
*value_strings = talloc_move(mem_ctx, &tmp_valstrings);
diff --git a/source3/utils/net_conf.c b/source3/utils/net_conf.c
index 8791d7cbdd..8957408bd6 100644
--- a/source3/utils/net_conf.c
+++ b/source3/utils/net_conf.c
@@ -541,7 +541,7 @@ static int net_conf_showshare(int argc, const char **argv)
d_printf("[%s]\n", sharename);
- for (count = 0; count <= num_params; count++) {
+ for (count = 0; count < num_params; count++) {
d_printf("\t%s = %s\n", param_names[count],
param_values[count]);
}