diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-19 12:33:32 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-19 12:33:32 +0000 |
commit | 26488953e72c33f95419585e400312b2ae2e99db (patch) | |
tree | e8b0fbbcbef03a0d3a5575cfec632cba4a238040 | |
parent | 251ea1e6776401005e302addd56a689c01924426 (diff) | |
download | samba-26488953e72c33f95419585e400312b2ae2e99db.tar.gz samba-26488953e72c33f95419585e400312b2ae2e99db.tar.bz2 samba-26488953e72c33f95419585e400312b2ae2e99db.zip |
Merge from HEAD: We don't need this any more, setenv() is in replace.c now
(This used to be commit cd6ad1f13b481ab22d98993db3fa80ec43dc1c8c)
-rw-r--r-- | source3/nsswitch/winbindd.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/source3/nsswitch/winbindd.h b/source3/nsswitch/winbindd.h index e8bcf76bd3..164b7ffda7 100644 --- a/source3/nsswitch/winbindd.h +++ b/source3/nsswitch/winbindd.h @@ -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 */ |