From 90446e7e4bebb2fbe4d0462e572bd0281c3dcdb1 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Tue, 1 Feb 2005 19:04:13 +0000 Subject: r5162: BUG 2264: remove shutdown and abortshurn commands from rpcclient since they are stable in 'net rpc' (to avoid fixing portability bugs) (This used to be commit 0a1f9703a1fe5dec80d76db6736c43e19fea9c3f) --- source3/rpcclient/cmd_reg.c | 45 ++++++++++++++------------------------------- 1 file changed, 14 insertions(+), 31 deletions(-) (limited to 'source3') diff --git a/source3/rpcclient/cmd_reg.c b/source3/rpcclient/cmd_reg.c index 8ec50b894f..7b9bb9b39e 100644 --- a/source3/rpcclient/cmd_reg.c +++ b/source3/rpcclient/cmd_reg.c @@ -42,7 +42,7 @@ * */ -#if 0 /* Simo: reg functions need to be updated to the new cmd interface */ +#if 0 /* This whole file need to be rewritten for the cirrent rpcclient interface */ /**************************************************************************** nt registry enum @@ -889,7 +889,6 @@ static void cmd_reg_get_key_sec(struct client_info *info) } } -#endif /* 0 */ /**************************************************************************** nt registry shutdown @@ -964,44 +963,28 @@ static NTSTATUS cmd_reg_abort_shutdown(struct cli_state *cli, return result; } +#endif /* This whole file need to be rewritten for the cirrent rpcclient interface */ + /* List of commands exported by this module */ struct cmd_set reg_commands[] = { { "REG" }, - +#if 0 { "shutdown", RPC_RTYPE_NTSTATUS, cmd_reg_shutdown, NULL, PI_WINREG, "Remote Shutdown", "syntax: shutdown [-m message] [-t timeout] [-r] [-h] [-f] (-r == reboot, -h == halt, -f == force)" }, { "abortshutdown", RPC_RTYPE_NTSTATUS, cmd_reg_abort_shutdown, NULL, PI_WINREG, "Abort Shutdown", "syntax: abortshutdown" }, -/* - { "regenum", cmd_reg_enum, "Registry Enumeration", - "" }, - - { "regdeletekey", cmd_reg_delete_key, "Registry Key Delete", - "" }, - - { "regcreatekey", cmd_reg_create_key, "Registry Key Create", - " [keyclass]" }, - - { "regqueryval", cmd_reg_query_info, "Registry Value Query", - "" }, - - { "regquerykey", cmd_reg_query_key, "Registry Key Query", - "" }, - - { "regdeleteval", cmd_reg_delete_val, "Registry Value Delete", - "" }, - - { "regcreateval", cmd_reg_create_val, "Registry Key Create", - " " }, - - { "reggetsec", cmd_reg_get_key_sec, "Registry Key Security", - "" }, - - { "regtestsec", cmd_reg_test_key_sec, "Test Registry Key Security", - "" }, -*/ + { "regenum", cmd_reg_enum, "Registry Enumeration", "" }, + { "regdeletekey", cmd_reg_delete_key, "Registry Key Delete", "" }, + { "regcreatekey", cmd_reg_create_key, "Registry Key Create", " [keyclass]" }, + { "regqueryval", cmd_reg_query_info, "Registry Value Query", "" }, + { "regquerykey", cmd_reg_query_key, "Registry Key Query", "" }, + { "regdeleteval", cmd_reg_delete_val, "Registry Value Delete", "" }, + { "regcreateval", cmd_reg_create_val, "Registry Key Create", " " }, + { "reggetsec", cmd_reg_get_key_sec, "Registry Key Security", "" }, + { "regtestsec", cmd_reg_test_key_sec, "Test Registry Key Security", "" }, +#endif { NULL } }; -- cgit