summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-07 04:52:12 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-07 04:52:12 +0000
commit699777a5c149d8608c834034d50b207d6da254b2 (patch)
tree18bb3b9f9a2a776cdc9080b784bc1f83c3b8f55c
parentffa7d0461fa6628302ddf5590a42cca60ec8b90b (diff)
downloadsamba-699777a5c149d8608c834034d50b207d6da254b2.tar.gz
fixed a bug in real_seekdir()
-rw-r--r--source/smbwrapper/realcalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbwrapper/realcalls.h b/source/smbwrapper/realcalls.h
index 65431bf53f7..83c7cccf204 100644
--- a/source/smbwrapper/realcalls.h
+++ b/source/smbwrapper/realcalls.h
@@ -88,7 +88,7 @@
#elif SYS_seekdir
#define real_seekdir(d,l) (syscall(SYS_seekdir,(d),(l)))
#elif HAVE___SEEKDIR
-#define real_seekdir(d) (__seekdir(d,l))
+#define real_seekdir(d,l) (__seekdir(d,l))
#else
#define NO_SEEKDIR_WRAPPER
#endif