diff options
author | Jeremy Allison <jra@samba.org> | 2000-10-09 00:06:30 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-10-09 00:06:30 +0000 |
commit | 4d968ed35d423cf413689a97bfc78fc67b7a09f1 (patch) | |
tree | 5f2ea5fbfb94200a57b3784e5873d15365f57a7f /source3/msdfs | |
parent | 33170cc6fb1b00d573d8e3fcea3fbd43080eb153 (diff) | |
download | samba-4d968ed35d423cf413689a97bfc78fc67b7a09f1.tar.gz samba-4d968ed35d423cf413689a97bfc78fc67b7a09f1.tar.bz2 samba-4d968ed35d423cf413689a97bfc78fc67b7a09f1.zip |
Missing conn parameter missed in vfs rewrite.
Jeremy.
(This used to be commit 4eecc63be5bd11590972ee4f446b7a80d46a713b)
Diffstat (limited to 'source3/msdfs')
-rw-r--r-- | source3/msdfs/msdfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/msdfs/msdfs.c b/source3/msdfs/msdfs.c index 0101b9e066..999ffa78b7 100644 --- a/source3/msdfs/msdfs.c +++ b/source3/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; |