summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/net_rpc_conf.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/utils/net_rpc_conf.c b/source3/utils/net_rpc_conf.c
index e38e922f96..50d438c2d1 100644
--- a/source3/utils/net_rpc_conf.c
+++ b/source3/utils/net_rpc_conf.c
@@ -894,6 +894,12 @@ static int rpc_conf_delshare(struct net_context *c, int argc,
rpc_conf_delshare_internal, argc, argv );
}
+static int rpc_conf_getparm(struct net_context *c, int argc,
+ const char **argv)
+{
+
+ return 0;
+}
/* function calls */
int net_rpc_conf(struct net_context *c, int argc,
const char **argv)
@@ -945,6 +951,14 @@ int net_rpc_conf(struct net_context *c, int argc,
N_("net rpc conf delshare\n"
" Delete a remote share.")
},
+ {
+ "getparm",
+ rpc_conf_getparm,
+ NET_TRANSPORT_RPC,
+ N_("Retrieve the value of a parameter."),
+ N_("net rpc conf getparm\n"
+ " Retrieve the value of a parameter.")
+ },
{NULL, NULL, 0, NULL, NULL}
};