summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2010-05-09 00:42:54 +0200
committerGünther Deschner <gd@samba.org>2010-05-09 00:42:54 +0200
commitecc3413bf5aa36250bba1969cb57d6af4c7d09d5 (patch)
tree9ab879df6302480d8ea95c4a1280d86be351444a /source3/libsmb
parent0798ddf63a72e4259ce406ac199490eb5cb1f359 (diff)
downloadsamba-ecc3413bf5aa36250bba1969cb57d6af4c7d09d5.tar.gz
samba-ecc3413bf5aa36250bba1969cb57d6af4c7d09d5.tar.bz2
samba-ecc3413bf5aa36250bba1969cb57d6af4c7d09d5.zip
s3-libsmb: fix argument order for tevent_req_default_print in cli_pull_print().
Andreas, please check. Guenther
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/clireadwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clireadwrite.c b/source3/libsmb/clireadwrite.c
index ee5a80a333..24c9d9f681 100644
--- a/source3/libsmb/clireadwrite.c
+++ b/source3/libsmb/clireadwrite.c
@@ -408,7 +408,7 @@ static char *cli_pull_print(struct tevent_req *req, TALLOC_CTX *mem_ctx)
req, struct cli_pull_state);
char *result;
- result = tevent_req_default_print(mem_ctx, req);
+ result = tevent_req_default_print(req, mem_ctx);
if (result == NULL) {
return NULL;
}