diff options
author | Jim McDonough <jmcd@samba.org> | 2003-10-24 13:49:29 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2003-10-24 13:49:29 +0000 |
commit | 3d8e3f314b9f1ad3966afd5ad217a63b109de0f9 (patch) | |
tree | 07e46a5c7e7ab1f5a08b3aac5d1bc092d068decf /source3/rpcclient | |
parent | d2523233ea46945dea9c701ad4e5519f5cdc95c4 (diff) | |
download | samba-3d8e3f314b9f1ad3966afd5ad217a63b109de0f9.tar.gz samba-3d8e3f314b9f1ad3966afd5ad217a63b109de0f9.tar.bz2 samba-3d8e3f314b9f1ad3966afd5ad217a63b109de0f9.zip |
Add initshutdown pipe commands to rpcclient. Second part of fix to bug
#534
(This used to be commit 4e86243ea1d4bbe96720caaaf02300f5e15bee5a)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 773441a27c..f6dfd9bffa 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -462,6 +462,7 @@ extern struct cmd_set dfs_commands[]; extern struct cmd_set reg_commands[]; extern struct cmd_set ds_commands[]; extern struct cmd_set echo_commands[]; +extern struct cmd_set shutdown_commands[]; static struct cmd_set *rpcclient_command_list[] = { rpcclient_commands, @@ -474,6 +475,7 @@ static struct cmd_set *rpcclient_command_list[] = { dfs_commands, reg_commands, echo_commands, + shutdown_commands, NULL }; |