summaryrefslogtreecommitdiff
path: root/source3/rpcclient
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-04-23 07:10:28 +0000
committerTim Potter <tpot@samba.org>2003-04-23 07:10:28 +0000
commit1fe7ec8b4bf8141ab5778215e43a3ca19e04d7b9 (patch)
tree91b144df607a7b3d07a65f2585ef1da04d183923 /source3/rpcclient
parentf3f78bb9b47d77cecb2861c797d2d3b358014211 (diff)
downloadsamba-1fe7ec8b4bf8141ab5778215e43a3ca19e04d7b9.tar.gz
samba-1fe7ec8b4bf8141ab5778215e43a3ca19e04d7b9.tar.bz2
samba-1fe7ec8b4bf8141ab5778215e43a3ca19e04d7b9.zip
Patch from waider to set exit code of last executed command specified
as an argument to -c. (This used to be commit 048aeefcdc12d93bc728d104bbf38ea8becfb16c)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r--source3/rpcclient/rpcclient.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c
index bf016e94c7..0411212e8c 100644
--- a/source3/rpcclient/rpcclient.c
+++ b/source3/rpcclient/rpcclient.c
@@ -628,13 +628,15 @@ out_free:
if (cmdstr && cmdstr[0]) {
char *cmd;
char *p = cmdstr;
+ int result = 0;
while((cmd=next_command(&p)) != NULL) {
- process_cmd(cli, cmd);
+ NTSTATUS cmd_result = process_cmd(cli, cmd);
+ result = NT_STATUS_IS_ERR(cmd_result);
}
cli_shutdown(cli);
- return 0;
+ return result;
}
/* Loop around accepting commands */