From c2919e499a755014ade1381552f4d808f443d89f Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Tue, 11 May 1999 23:58:20 +0000 Subject: [PATCH] Avoid a symbol conflict with /usr/include/sys/vfs.h under AIX. Thanks to Steve Noyd Jones (This used to be commit 117d369aed6576b5932d3f973a64ca8b6ed921dc) --- source3/include/vfs.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source3/include/vfs.h b/source3/include/vfs.h index 80215b0036b..8e4c6454f58 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -90,6 +90,12 @@ struct vfs_connection_struct { gid_t *groups; }; +/* Avoid conflict with an AIX include file */ + +#ifdef vfs_ops +#undef vfs_ops +#endif + /* VFS operations structure */ struct vfs_ops { -- 2.34.1