2008-12-16 09:30:16 +01:00
/*
2002-01-30 06:08:46 +00:00
Unix SMB / CIFS implementation .
2000-05-09 11:43:00 +00:00
Winbind daemon for ntdom nss module
Copyright ( C ) Tim Potter 2000
2008-12-16 09:30:16 +01:00
2000-05-09 11:43:00 +00:00
This library is free software ; you can redistribute it and / or
2007-07-10 04:04:46 +00:00
modify it under the terms of the GNU Lesser General Public
2000-05-09 11:43:00 +00:00
License as published by the Free Software Foundation ; either
2007-07-10 02:31:50 +00:00
version 3 of the License , or ( at your option ) any later version .
2008-12-16 09:30:16 +01:00
2000-05-09 11:43:00 +00:00
This library is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Library General Public License for more details .
2008-12-16 09:30:16 +01:00
2007-07-10 04:04:46 +00:00
You should have received a copy of the GNU Lesser General Public License
2007-07-10 02:31:50 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2000-05-09 11:43:00 +00:00
*/
2001-06-07 07:14:17 +00:00
# ifndef _WINBIND_NSS_CONFIG_H
# define _WINBIND_NSS_CONFIG_H
2000-05-09 11:43:00 +00:00
2006-08-22 22:53:08 +00:00
/* shutup the compiler warnings due to krb5.h on 64-bit sles9 */
2006-04-13 12:03:12 +00:00
# ifdef SIZEOF_LONG
# undef SIZEOF_LONG
# endif
2000-05-09 11:43:00 +00:00
/* Include header files from data in config.h file */
2002-09-25 15:47:01 +00:00
# ifndef NO_CONFIG_H
2008-09-16 16:30:14 +02:00
# include "../replace/replace.h"
2002-09-25 15:47:01 +00:00
# endif
2000-05-09 11:43:00 +00:00
2006-09-21 22:24:53 +00:00
# include "system/filesys.h"
2006-09-27 13:52:14 +00:00
# include "system/network.h"
2007-12-11 13:16:35 -08:00
# include "system/passwd.h"
2000-05-09 11:43:00 +00:00
2003-04-02 06:16:15 +00:00
# include "nsswitch/winbind_nss.h"
2001-04-25 05:47:50 +00:00
2000-05-09 11:43:00 +00:00
/* I'm trying really hard not to include anything from smb.h with the
result of some silly looking redeclaration of structures . */
2007-12-07 12:04:40 -08:00
# ifndef FSTRING_LEN
2001-04-13 19:12:06 +00:00
# define FSTRING_LEN 256
2000-05-09 11:43:00 +00:00
typedef char fstring [ FSTRING_LEN ] ;
2011-05-17 16:18:37 -07:00
# ifndef fstrcpy
# define fstrcpy(d,s) \
do { \
const char * _fstrcpy_src = ( const char * ) ( s ) ; \
strlcpy ( ( d ) , _fstrcpy_src ? _fstrcpy_src : " " , sizeof ( fstring ) ) ; \
} while ( 0 )
# endif
2007-12-07 12:04:40 -08:00
# endif
2000-05-09 11:43:00 +00:00
2001-05-08 05:56:10 +00:00
/* Some systems (SCO) treat UNIX domain sockets as FIFOs */
# ifndef S_IFSOCK
# define S_IFSOCK S_IFIFO
# endif
# ifndef S_ISSOCK
# define S_ISSOCK(mode) ((mode & S_IFSOCK) == S_IFSOCK)
# endif
2000-05-09 11:43:00 +00:00
# endif