summaryrefslogtreecommitdiffstats
path: root/source/smbd/statcache.c
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-05-14 10:59:01 +0000
committerAlexander Bokovoy <ab@samba.org>2003-05-14 10:59:01 +0000
commitc2689ed118b490e49497a76ed6a2251262018769 (patch)
tree64d34ddfb5db28c0e2e38aa0156b1566da1dd6d4 /source/smbd/statcache.c
parent0714dda7cc4a1df73e1b9d11daae80a1f46583de (diff)
downloadsamba-c2689ed118b490e49497a76ed6a2251262018769.tar.gz
samba-c2689ed118b490e49497a76ed6a2251262018769.tar.xz
samba-c2689ed118b490e49497a76ed6a2251262018769.zip
Prefix VFS API macros with SMB_ for consistency and to avoid problems with VFS_ macros at system side. We currently have one clash with AIX and its VFS_LOCK. Compiled and tested -- no new functionality or code, just plain rename of macros for yet-unreleased VFS API version. Needs to be done before a24 is out
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 5c77474fec1..79758bcfe2e 100644
--- a/source/smbd/statcache.c
+++ b/source/smbd/statcache.c
@@ -242,7 +242,7 @@ BOOL stat_cache_lookup(connection_struct *conn, pstring name, pstring dirpath,
} else {
scp = (stat_cache_entry *)(hash_elem->value);
DO_PROFILE_INC(statcache_hits);
- if(VFS_STAT(conn,scp->translated_path, pst) != 0) {
+ if(SMB_VFS_STAT(conn,scp->translated_path, pst) != 0) {
/* Discard this entry - it doesn't exist in the filesystem. */
hash_remove(&stat_cache, hash_elem);
return False;