diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-05-22 09:25:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:52:47 -0500 |
commit | 42c1ef4025186066660b1bb187d063e07bb493ff (patch) | |
tree | bc5429b51710ad4dc7028d2eac51e2734bb8b8ba /source4/ntvfs/ntvfs.h | |
parent | 3527a578bae09430cd36ec5de3e29e82ce616c18 (diff) | |
download | samba-42c1ef4025186066660b1bb187d063e07bb493ff.tar.gz samba-42c1ef4025186066660b1bb187d063e07bb493ff.tar.xz samba-42c1ef4025186066660b1bb187d063e07bb493ff.zip |
r23067: use 'const union smb_search_data *file' also in the server code to get rid
of compiler warnings in the cifs backend
metze
(This used to be commit 34ef07b1f5acdad27edd80de8de4c6de7f879f9b)
Diffstat (limited to 'source4/ntvfs/ntvfs.h')
-rw-r--r-- | source4/ntvfs/ntvfs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/ntvfs/ntvfs.h b/source4/ntvfs/ntvfs.h index e805c97bbd..c346c0b9e9 100644 --- a/source4/ntvfs/ntvfs.h +++ b/source4/ntvfs/ntvfs.h @@ -92,11 +92,11 @@ struct ntvfs_ops { NTSTATUS (*search_first)(struct ntvfs_module_context *ntvfs, struct ntvfs_request *req, union smb_search_first *io, void *private, - BOOL (*callback)(void *private, union smb_search_data *file)); + BOOL (*callback)(void *private, const union smb_search_data *file)); NTSTATUS (*search_next)(struct ntvfs_module_context *ntvfs, struct ntvfs_request *req, union smb_search_next *io, void *private, - BOOL (*callback)(void *private, union smb_search_data *file)); + BOOL (*callback)(void *private, const union smb_search_data *file)); NTSTATUS (*search_close)(struct ntvfs_module_context *ntvfs, struct ntvfs_request *req, union smb_search_close *io); |