Index: smbd/filename.c =================================================================== --- smbd/filename.c (revision 706) +++ smbd/filename.c (working copy) @@ -132,6 +132,10 @@ if (!*name) { name[0] = '.'; name[1] = '\0'; + if (SMB_VFS_STAT(conn,name,&st) == 0) { + *pst = st; + } + DEBUG(5,("conversion finished %s -> %s\n",orig_path, name)); return(True); }