summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-07 10:12:29 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-07 10:12:29 +0000
commit98af8adff1d98db0faf2fbb7c8f10eae10edcaf2 (patch)
tree4ff32109d68257a3ee8a990caaf0bedb131e3844 /source3
parent5e9ffa9959413f2c65f21f65d39b3687cd2e54c8 (diff)
downloadsamba-98af8adff1d98db0faf2fbb7c8f10eae10edcaf2.tar.gz
samba-98af8adff1d98db0faf2fbb7c8f10eae10edcaf2.tar.bz2
samba-98af8adff1d98db0faf2fbb7c8f10eae10edcaf2.zip
fixed __xstat() under linux
(This used to be commit 15aa1b52cd78e9b59fa44b248267b9698a5b0d5c)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbwrapper/wrapped.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbwrapper/wrapped.c b/source3/smbwrapper/wrapped.c
index 222e55a9a2..adf9156baf 100644
--- a/source3/smbwrapper/wrapped.c
+++ b/source3/smbwrapper/wrapped.c
@@ -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);