summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/nsswitch/wb_common.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/source4/nsswitch/wb_common.c b/source4/nsswitch/wb_common.c
index f829b55f2a..e8c317b598 100644
--- a/source4/nsswitch/wb_common.c
+++ b/source4/nsswitch/wb_common.c
@@ -600,27 +600,14 @@ NSS_STATUS winbindd_request(int req_type,
enable them
************************************************************************/
-/* Use putenv() instead of setenv() in these functions as not all
- environments have the latter. */
-
BOOL winbind_off( void )
{
-#if HAVE_SETENV
setenv(WINBINDD_DONT_ENV, "1", 1);
return True;
-#else
- static const char *s = WINBINDD_DONT_ENV "=1";
- return putenv(s) != -1;
-#endif
}
BOOL winbind_on( void )
{
-#if HAVE_SETENV
setenv(WINBINDD_DONT_ENV, "0", 1);
return True;
-#else
- static const char *s = WINBINDD_DONT_ENV "=0";
- return putenv(s) != -1;
-#endif
}