diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-06-28 08:27:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:48 -0500 |
commit | 4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f (patch) | |
tree | ead976b86dc26d251caa010a307e03abba8e7da3 /source4/smb_server/search.c | |
parent | 0aba9a2e3fc222625f31cc6fd12f1c7c7021c660 (diff) | |
download | samba-4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f.tar.gz samba-4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f.tar.bz2 samba-4ddb2d347d86818a13d71d0eb2f0f8983c2cc41f.zip |
r1279: rename struct tcon_context to smbsrv_tcon
metze
(This used to be commit 99473fab4b1ff87a795f3c08f4c521d9beb504c0)
Diffstat (limited to 'source4/smb_server/search.c')
-rw-r--r-- | source4/smb_server/search.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/smb_server/search.c b/source4/smb_server/search.c index 63ae521783..40ea53c235 100644 --- a/source4/smb_server/search.c +++ b/source4/smb_server/search.c @@ -153,7 +153,7 @@ void reply_search(struct request_context *req) sn->search_next.in.max_count = SVAL(req->in.vwv, VWV(0)); /* call backend */ - req->async.status = req->conn->ntvfs_ops->search_next(req, + req->async.status = req->tcon->ntvfs_ops->search_next(req, sn, &state, find_callback); SSVAL(req->out.vwv, VWV(0), sn->search_next.out.count); } else { @@ -164,7 +164,7 @@ void reply_search(struct request_context *req) sf->search_first.in.max_count = SVAL(req->in.vwv, VWV(0)); /* call backend */ - req->async.status = req->conn->ntvfs_ops->search_first(req, + req->async.status = req->tcon->ntvfs_ops->search_first(req, sf, &state, find_callback); SSVAL(req->out.vwv, VWV(0), sf->search_first.out.count); } @@ -222,7 +222,7 @@ void reply_fclose(struct request_context *req) req->async.private = sn; /* call backend */ - req->async.status = req->conn->ntvfs_ops->search_next(req, sn, + req->async.status = req->tcon->ntvfs_ops->search_next(req, sn, NULL, NULL); REQ_ASYNC_TAIL; |