1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-26 04:23:49 +03:00

r9483: Changed DIR to SMB_STRUCT_DIR because of the amazing stupidity of a UNIX vendor

not understanding abstract data types :-(.
Jeremy.
This commit is contained in:
Jeremy Allison
2005-08-22 18:03:08 +00:00
committed by Gerald (Jerry) Carter
parent d8c750edb6
commit be5b4e2fa3
16 changed files with 97 additions and 71 deletions

View File

@@ -743,6 +743,18 @@ typedef int socklen_t;
# endif
#endif
/*
* Type for DIR structure.
*/
#ifndef SMB_STRUCT_DIR
# if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
# define SMB_STRUCT_DIR DIR64
# else
# define SMB_STRUCT_DIR DIR
# endif
#endif
/*
* Defines for 64 bit fcntl locks.
*/