diff options
author | Alexander Bokovoy <ab@samba.org> | 2005-08-22 14:07:52 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:34:20 -0500 |
commit | 5bd6a114711c0033403a656b42574380a6ebcd3d (patch) | |
tree | 5656f59092c9bb32050d2b67d9508208a7ca6be8 /source4 | |
parent | 7fe42c9b18383ff210a924df6da7d97f4effced7 (diff) | |
download | samba-5bd6a114711c0033403a656b42574380a6ebcd3d.tar.gz samba-5bd6a114711c0033403a656b42574380a6ebcd3d.tar.bz2 samba-5bd6a114711c0033403a656b42574380a6ebcd3d.zip |
r9476: Make intention to ignore result of receiving excplicit. Fixes warning found by Coverity
(This used to be commit d1b7a4a24c3af1bfcc289a3476c9fb33ed2fb840)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/libcli/raw/rawsearch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/raw/rawsearch.c b/source4/libcli/raw/rawsearch.c index a9b49c07a4..65928d1154 100644 --- a/source4/libcli/raw/rawsearch.c +++ b/source4/libcli/raw/rawsearch.c @@ -724,7 +724,7 @@ NTSTATUS smb_raw_search_close(struct smbcli_tree *tree, SSVAL(req->out.vwv, VWV(0), io->findclose.in.handle); if (smbcli_request_send(req)) { - smbcli_request_receive(req); + (void) smbcli_request_receive(req); } return smbcli_request_destroy(req); |