1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Avoid a symbol conflict with /usr/include/sys/vfs.h under AIX.

Thanks to Steve Noyd Jones <noyd@u.washington.edu>
This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent 980a7b11f3
commit 117d369aed

View File

@ -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 {