summaryrefslogtreecommitdiff
path: root/source/smbd/notify_hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/smbd/notify_hash.c')
-rw-r--r--source/smbd/notify_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/smbd/notify_hash.c b/source/smbd/notify_hash.c
index d8b35462acb..810e5079ba5 100644
--- a/source/smbd/notify_hash.c
+++ b/source/smbd/notify_hash.c
@@ -48,7 +48,7 @@ static BOOL notify_hash(connection_struct *conn, char *path, uint32 flags,
ZERO_STRUCTP(data);
- if(vfs_stat(conn,path, &st) == -1)
+ if(SMB_VFS_STAT(conn,path, &st) == -1)
return False;
data->modify_time = st.st_mtime;
@@ -100,7 +100,7 @@ static BOOL notify_hash(connection_struct *conn, char *path, uint32 flags,
/*
* Do the stat - but ignore errors.
*/
- vfs_stat(conn,full_name, &st);
+ SMB_VFS_STAT(conn,full_name, &st);
/*
* Always sum the times.