1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-10 12:58:35 +03:00

fixed wrapper for access(). This gets xedit working.

(This used to be commit 3c839a523183c163db0d14cf1a3aac47ffafd496)
This commit is contained in:
Andrew Tridgell 1998-10-03 14:46:48 +00:00
parent 4d9ab2add2
commit 76aa53bce1

View File

@ -1090,7 +1090,7 @@ int smbw_access(const char *name, int mode)
{
struct stat st;
/* how do we map this properly ?? */
return smbw_stat(name, &st) == 0;
return smbw_stat(name, &st);
}
/*****************************************************