diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-07-06 08:00:24 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:49 -0500 |
commit | af0a9eb52955cfae570bfdc01821f56385c860cf (patch) | |
tree | 9a798fd727753c3d9ceb44512579dc5b3e7fbebf /source4/ntvfs/nbench | |
parent | 51e0ae33acf3cd09ae0eb9ef5077cecab4780a3e (diff) | |
download | samba-af0a9eb52955cfae570bfdc01821f56385c860cf.tar.gz |
r16834: split the level's of smb_search_first/smb_search_next and the levels
of smb_search_data
metze
(This used to be commit 78c201db8a47a71908698c4dda2add4cf85694d9)
Diffstat (limited to 'source4/ntvfs/nbench')
-rw-r--r-- | source4/ntvfs/nbench/vfs_nbench.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntvfs/nbench/vfs_nbench.c b/source4/ntvfs/nbench/vfs_nbench.c index f7834a9751f..34cf8d9565f 100644 --- a/source4/ntvfs/nbench/vfs_nbench.c +++ b/source4/ntvfs/nbench/vfs_nbench.c @@ -819,13 +819,13 @@ static void nbench_search_first_send(struct ntvfs_request *req) union smb_search_first *io = req->async_states->private_data; switch (io->generic.level) { - case RAW_SEARCH_BOTH_DIRECTORY_INFO: + case RAW_SEARCH_TRANS2: if (NT_STATUS_IS_ERR(req->async_states->status)) { ZERO_STRUCT(io->t2ffirst.out); } nbench_log(req, "FIND_FIRST \"%s\" %d %d %d %s\n", io->t2ffirst.in.pattern, - io->generic.level, + io->t2ffirst.data_level, io->t2ffirst.in.max_count, io->t2ffirst.out.count, get_nt_error_c_code(req->async_states->status)); |