summaryrefslogtreecommitdiff
path: root/source3/lib/replace.c
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2003-07-29 20:11:18 +0000
committerHerb Lewis <herb@samba.org>2003-07-29 20:11:18 +0000
commitedabf75a54424053dbed0b36f1977755f1a633f6 (patch)
treeafaaa1991c4ab4cbc6dcba3e6308e671177d93e3 /source3/lib/replace.c
parent6070a519c2058224d6703e1b7fdff54986c621f5 (diff)
downloadsamba-edabf75a54424053dbed0b36f1977755f1a633f6.tar.gz
samba-edabf75a54424053dbed0b36f1977755f1a633f6.tar.bz2
samba-edabf75a54424053dbed0b36f1977755f1a633f6.zip
split replace into replace and replace1 to allow setenv to be used by
nsswitch modules. Add required libraries to get rid of undefined functions for libns_winbind.so and libns_wins.so (This used to be commit cec5bf5f99ca98b0f5ee84636fc18f0cb3079683)
Diffstat (limited to 'source3/lib/replace.c')
-rw-r--r--source3/lib/replace.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/source3/lib/replace.c b/source3/lib/replace.c
index 0c62ec9bfa..cd48b8d160 100644
--- a/source3/lib/replace.c
+++ b/source3/lib/replace.c
@@ -447,21 +447,3 @@ char *rep_inet_ntoa(struct in_addr ip)
return t;
}
#endif
-
-#ifndef HAVE_SETENV
- int setenv(const char *name, const char *value, int overwrite)
-{
- char *p = NULL;
- int ret = -1;
-
- asprintf(&p, "%s=%s", name, value);
-
- if (overwrite || getenv(name)) {
- if (p) ret = putenv(p);
- } else {
- ret = 0;
- }
-
- return ret;
-}
-#endif