1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

fixed __xstat() under linux

(This used to be commit 15aa1b52cd78e9b59fa44b248267b9698a5b0d5c)
This commit is contained in:
Andrew Tridgell 1998-10-07 10:12:29 +00:00
parent 5e9ffa9959
commit 98af8adff1

View File

@ -398,7 +398,7 @@
int stat(char *name, void *st)
{
#if HAVE___XSTAT
return xstat(name, st);
return __xstat(0, name, st);
#else
if (smbw_path(name)) {
return smbw_stat(name, st);