diff options
author | Volker Lendecke <vl@samba.org> | 2011-03-27 11:50:55 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-03-27 13:17:47 +0200 |
commit | b47b4c9e3dd1a3776f38b879041fb83a0edb6c36 (patch) | |
tree | 6acb444b592f366ce5a80b621a614ba905f705d0 | |
parent | 8cd262240e4856c172d9cf01d998d63441357dc3 (diff) | |
download | samba-b47b4c9e3dd1a3776f38b879041fb83a0edb6c36.tar.gz samba-b47b4c9e3dd1a3776f38b879041fb83a0edb6c36.tar.bz2 samba-b47b4c9e3dd1a3776f38b879041fb83a0edb6c36.zip |
s3: Remove two calls to cli_errstr
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun Mar 27 13:17:47 CEST 2011 on sn-devel-104
-rw-r--r-- | source3/client/client.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index a6a7a22e3f..000970e5cc 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1814,12 +1814,15 @@ static int do_put(const char *rname, const char *lname, bool reput) if (reput) { status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum); if (NT_STATUS_IS_OK(status)) { - if (!NT_STATUS_IS_OK(cli_qfileinfo_basic( + if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic( targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL)) && - !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) { - d_printf("getattrib: %s\n",cli_errstr(cli)); + !NT_STATUS_IS_OK(status = cli_getattrE( + targetcli, fnum, NULL, + &start, NULL, NULL, + NULL))) { + d_printf("getattrib: %s\n", nt_errstr(status)); return 1; } } @@ -1828,7 +1831,8 @@ static int do_put(const char *rname, const char *lname, bool reput) } if (!NT_STATUS_IS_OK(status)) { - d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname); + d_printf("%s opening remote file %s\n", nt_errstr(status), + rname); return 1; } |