summaryrefslogtreecommitdiff
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
commit15aa1b52cd78e9b59fa44b248267b9698a5b0d5c (patch)
tree3ebc21df56bf27c3305b23f5d6166a12c735180f
parentc1d2d4e27125cbd463f520d1109e7c7988b58222 (diff)
downloadsamba-15aa1b52cd78e9b59fa44b248267b9698a5b0d5c.tar.gz
fixed __xstat() under linux
-rw-r--r--source/smbwrapper/wrapped.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbwrapper/wrapped.c b/source/smbwrapper/wrapped.c
index 222e55a9a29..adf9156baf5 100644
--- a/source/smbwrapper/wrapped.c
+++ b/source/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);