From 9a3e2d1c020cd7de3a6074f52dc0911bc0ab6f9b Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Tue, 5 Jul 2011 17:06:27 -0500 Subject: [PATCH] s3:smbd fix a compile warning on AIX 5.3 use the correct alias instead of FD directly Autobuild-User: Christian Ambach Autobuild-Date: Tue Jul 5 19:51:42 CEST 2011 on sn-devel-104 --- source3/smbd/vfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 7be38672678..ed5009885be 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -729,7 +729,7 @@ const char *vfs_readdirname(connection_struct *conn, void *p, if (!p) return(NULL); - ptr = SMB_VFS_READDIR(conn, (DIR *)p, sbuf); + ptr = SMB_VFS_READDIR(conn, (SMB_STRUCT_DIR *)p, sbuf); if (!ptr) return(NULL); -- 2.11.4.GIT