mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
Merge from HEAD: We don't need this any more, setenv() is in replace.c now
This commit is contained in:
@ -205,18 +205,4 @@ typedef struct {
|
||||
|
||||
#define DOM_SEQUENCE_NONE ((uint32)-1)
|
||||
|
||||
/* SETENV */
|
||||
#if HAVE_SETENV
|
||||
#define SETENV(name, value, overwrite) setenv(name,value,overwrite)
|
||||
#elif HAVE_PUTENV
|
||||
#define SETENV(name, value, overwrite) \
|
||||
{ \
|
||||
fstring envvar; \
|
||||
slprintf(envvar, sizeof(fstring), "%s=%s", name, value); \
|
||||
putenv(envvar); \
|
||||
}
|
||||
#else
|
||||
#define SETENV(name, value, overwrite) ;
|
||||
#endif
|
||||
|
||||
#endif /* _WINBINDD_H */
|
||||
|
Reference in New Issue
Block a user