1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

Missing conn parameter missed in vfs rewrite.

Jeremy.
(This used to be commit 4eecc63be5)
This commit is contained in:
Jeremy Allison 2000-10-09 00:06:30 +00:00
parent 33170cc6fb
commit 4d968ed35d

View File

@ -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;