summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-11-09 23:55:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:11 -0500
commita8caf25bd86ebe9f616b3fc88cca120850eb05d6 (patch)
tree514279c302972ff54f9f3d796760b516a2ab11f3 /source3
parentc0406ae1b04a60318ba18abb168b610d8c223005 (diff)
downloadsamba-a8caf25bd86ebe9f616b3fc88cca120850eb05d6.tar.gz
samba-a8caf25bd86ebe9f616b3fc88cca120850eb05d6.tar.bz2
samba-a8caf25bd86ebe9f616b3fc88cca120850eb05d6.zip
r3644: Fixup examples VFS compile.
Jeremy. (This used to be commit dfa910e4ab498100d0572838f2ac05faec3c917f)
Diffstat (limited to 'source3')
-rw-r--r--source3/include/vfs_macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs_macros.h b/source3/include/vfs_macros.h
index a149db53b1..b2c0027a21 100644
--- a/source3/include/vfs_macros.h
+++ b/source3/include/vfs_macros.h
@@ -240,7 +240,7 @@
/* Directory operations */
#define SMB_VFS_NEXT_OPENDIR(handle, conn, fname) ((handle)->vfs_next.ops.opendir((handle)->vfs_next.handles.opendir, (conn), (fname)))
#define SMB_VFS_NEXT_READDIR(handle, conn, dirp) ((handle)->vfs_next.ops.readdir((handle)->vfs_next.handles.readdir, (conn), (dirp)))
-#define SMB_VFS_NEXT_SEEKDIR(handle, conn, dirp) ((handle)->vfs_next.ops.seekdir((handle)->vfs_next.handles.seekdir, (conn), (dirp), (offset)))
+#define SMB_VFS_NEXT_SEEKDIR(handle, conn, dirp, offset) ((handle)->vfs_next.ops.seekdir((handle)->vfs_next.handles.seekdir, (conn), (dirp), (offset)))
#define SMB_VFS_NEXT_TELLDIR(handle, conn, dirp) ((handle)->vfs_next.ops.telldir((handle)->vfs_next.handles.telldir, (conn), (dirp)))
#define SMB_VFS_NEXT_REWINDDIR(handle, conn, dirp) ((handle)->vfs_next.ops.rewinddir((handle)->vfs_next.handles.rewinddir, (conn), (dirp)))
#define SMB_VFS_NEXT_DIR(handle, conn, dirp) ((handle)->vfs_next.ops.readdir((handle)->vfs_next.handles.readdir, (conn), (dirp)))