diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_rpc_conf.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/source3/utils/net_rpc_conf.c b/source3/utils/net_rpc_conf.c index 27eab10b0a..02cfc33490 100644 --- a/source3/utils/net_rpc_conf.c +++ b/source3/utils/net_rpc_conf.c @@ -1915,6 +1915,12 @@ static int rpc_conf_list(struct net_context *c, int argc, rpc_conf_list_internal, argc, argv ); } +static int rpc_conf_import(struct net_context *c, int argc, + const char **argv) +{ + d_printf("Function not yet implemented\n"); + return 0; +} static int rpc_conf_delshare(struct net_context *c, int argc, const char **argv) { @@ -1980,6 +1986,16 @@ int net_rpc_conf(struct net_context *c, int argc, }, { + "import", + rpc_conf_import, + NET_TRANSPORT_RPC, + N_("Import configuration from file in smb.conf " + "format."), + N_("net rpc conf import\n" + " Import configuration from file in smb.conf " + "format.") + }, + { "listshares", rpc_conf_listshares, NET_TRANSPORT_RPC, |