summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-02-14 11:42:05 +0100
committerVolker Lendecke <vl@samba.org>2009-02-14 11:42:05 +0100
commit6c07b9b7e7f65f4c5b0e347147ed60117c85c6f5 (patch)
tree08f29e2820ed04dd63885534cf64600c2671ad62
parent8dbfd59adcb5dd343466ced6e005ee53babdca41 (diff)
downloadsamba-6c07b9b7e7f65f4c5b0e347147ed60117c85c6f5.tar.gz
samba-6c07b9b7e7f65f4c5b0e347147ed60117c85c6f5.tar.bz2
samba-6c07b9b7e7f65f4c5b0e347147ed60117c85c6f5.zip
Attempt to fix the build on Solaris 8
-rw-r--r--source3/smbd/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c
index 6618bf07b0..b4a8f942c2 100644
--- a/source3/smbd/dir.c
+++ b/source3/smbd/dir.c
@@ -685,7 +685,7 @@ void dptr_DirCacheAdd(struct dptr_struct *dptr, const char *name, long offset)
****************************************************************************/
void dptr_init_search_op(struct dptr_struct *dptr)
{
- return SMB_VFS_INIT_SEARCH_OP(dptr->conn, dptr->dir_hnd->dir);
+ SMB_VFS_INIT_SEARCH_OP(dptr->conn, dptr->dir_hnd->dir);
}
/****************************************************************************