summaryrefslogtreecommitdiffstats
path: root/source/smbd/statcache.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-10-06 03:21:49 +0000
committerJeremy Allison <jra@samba.org>2000-10-06 03:21:49 +0000
commitb07611f8159b0b3f42e7e02611be9f4d56de96f5 (patch)
treef7795170df8db5844594c0557ba768cfe06873da /source/smbd/statcache.c
parentd4d55488397832df35b558564c263a307b0bb629 (diff)
downloadsamba-b07611f8159b0b3f42e7e02611be9f4d56de96f5.tar.gz
samba-b07611f8159b0b3f42e7e02611be9f4d56de96f5.tar.xz
samba-b07611f8159b0b3f42e7e02611be9f4d56de96f5.zip
Restructuring of vfs layer to include a "this" pointer - can be an fsp or
a conn struct depending on the call. We need this to have a clean NT ACL call interface. This will break any existing VFS libraries (that's why this is pre-release code). Andrew gets credit for this one :-) :-). In addition - added Herb's WITH_PROFILE changes - Herb - please examine the changes I've made to the smbd/reply.c code you added. The original code was very ugly and I have replaced it with a START_PROFILE(x)/END_PROFILE(x) pair using the preprocessor. Please check this compiles ok with the --with-profile switch. Jeremy.
Diffstat (limited to 'source/smbd/statcache.c')
-rw-r--r--source/smbd/statcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/statcache.c b/source/smbd/statcache.c
index 7b2916bb9a2..b66c5e2fe9e 100644
--- a/source/smbd/statcache.c
+++ b/source/smbd/statcache.c
@@ -214,7 +214,7 @@ BOOL stat_cache_lookup(connection_struct *conn, char *name, char *dirpath,
scp = (stat_cache_entry *)(hash_elem->value);
global_stat_cache_hits++;
trans_name = scp->names+scp->name_len+1;
- if(conn->vfs_ops.stat(dos_to_unix(trans_name,False), pst) != 0) {
+ if(conn->vfs_ops.stat(conn,dos_to_unix(trans_name,False), pst) != 0) {
/* Discard this entry - it doesn't exist in the filesystem. */
hash_remove(&stat_cache, hash_elem);
return False;