summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-10-09 00:06:30 +0000
committerJeremy Allison <jra@samba.org>2000-10-09 00:06:30 +0000
commit4eecc63be5bd11590972ee4f446b7a80d46a713b (patch)
tree8b150281fffa6b90a28b8cb248f8d1eb12818f36
parent1f156b2420b7ecf1266e650efc3cee55362e29dd (diff)
downloadsamba-4eecc63be5bd11590972ee4f446b7a80d46a713b.tar.gz
samba-4eecc63be5bd11590972ee4f446b7a80d46a713b.tar.xz
samba-4eecc63be5bd11590972ee4f446b7a80d46a713b.zip
Missing conn parameter missed in vfs rewrite.
Jeremy.
-rw-r--r--source/msdfs/msdfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/msdfs/msdfs.c b/source/msdfs/msdfs.c
index 0101b9e0669..999ffa78b73 100644
--- a/source/msdfs/msdfs.c
+++ b/source/msdfs/msdfs.c
@@ -216,7 +216,7 @@ BOOL is_msdfs_link(connection_struct* conn, char* path)
strlower(path);
- if(conn->vfs_ops.lstat(dos_to_unix(path,False),&st) != 0)
+ if(conn->vfs_ops.lstat(conn,dos_to_unix(path,False),&st) != 0)
{
DEBUG(5,("is_msdfs_link: %s does not exist.\n",path));
return False;