fixed __xstat() under linux
authorAndrew Tridgell <tridge@samba.org>
Wed, 7 Oct 1998 10:12:29 +0000 (10:12 +0000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 7 Oct 1998 10:12:29 +0000 (10:12 +0000)
source/smbwrapper/wrapped.c

index 222e55a9a29fb1d9efc4267dc945d415b7c4d3f2..adf9156baf5153705c341f9aefe58c9f8883bf76 100644 (file)
  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);