diff options
author | Gerald Carter <jerry@samba.org> | 2005-02-01 19:04:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:30 -0500 |
commit | 90446e7e4bebb2fbe4d0462e572bd0281c3dcdb1 (patch) | |
tree | dc9dd98bc948f1a240c48b7a053037217b3cbcc1 /source3/rpcclient | |
parent | 021011f90030f6f4c39c9ef27db17eec5d4536ad (diff) | |
download | samba-90446e7e4bebb2fbe4d0462e572bd0281c3dcdb1.tar.gz samba-90446e7e4bebb2fbe4d0462e572bd0281c3dcdb1.tar.bz2 samba-90446e7e4bebb2fbe4d0462e572bd0281c3dcdb1.zip |
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)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_reg.c | 45 |
1 files changed, 14 insertions, 31 deletions
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", - "<keyname>" }, - - { "regdeletekey", cmd_reg_delete_key, "Registry Key Delete", - "<keyname>" }, - - { "regcreatekey", cmd_reg_create_key, "Registry Key Create", - "<keyname> [keyclass]" }, - - { "regqueryval", cmd_reg_query_info, "Registry Value Query", - "<valname>" }, - - { "regquerykey", cmd_reg_query_key, "Registry Key Query", - "<keyname>" }, - - { "regdeleteval", cmd_reg_delete_val, "Registry Value Delete", - "<valname>" }, - - { "regcreateval", cmd_reg_create_val, "Registry Key Create", - "<valname> <valtype> <value>" }, - - { "reggetsec", cmd_reg_get_key_sec, "Registry Key Security", - "<keyname>" }, - - { "regtestsec", cmd_reg_test_key_sec, "Test Registry Key Security", - "<keyname>" }, -*/ + { "regenum", cmd_reg_enum, "Registry Enumeration", "<keyname>" }, + { "regdeletekey", cmd_reg_delete_key, "Registry Key Delete", "<keyname>" }, + { "regcreatekey", cmd_reg_create_key, "Registry Key Create", "<keyname> [keyclass]" }, + { "regqueryval", cmd_reg_query_info, "Registry Value Query", "<valname>" }, + { "regquerykey", cmd_reg_query_key, "Registry Key Query", "<keyname>" }, + { "regdeleteval", cmd_reg_delete_val, "Registry Value Delete", "<valname>" }, + { "regcreateval", cmd_reg_create_val, "Registry Key Create", "<valname> <valtype> <value>" }, + { "reggetsec", cmd_reg_get_key_sec, "Registry Key Security", "<keyname>" }, + { "regtestsec", cmd_reg_test_key_sec, "Test Registry Key Security", "<keyname>" }, +#endif { NULL } }; |