summaryrefslogtreecommitdiffstats
path: root/source3/lib/replace/replace.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-04-10 15:59:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:19:17 -0500
commit1ec9de1104f4563a5f3dbb96d41908d219e5b889 (patch)
tree83ad688b178fbdb9ac91df9bf258fb33d639dbf6 /source3/lib/replace/replace.c
parent1790c67780af0bcc4bc1df3f015fa6fcb7e55f95 (diff)
downloadsamba-1ec9de1104f4563a5f3dbb96d41908d219e5b889.tar.gz
samba-1ec9de1104f4563a5f3dbb96d41908d219e5b889.tar.xz
samba-1ec9de1104f4563a5f3dbb96d41908d219e5b889.zip
r22151: remove netgr functions from libreplace they're not used
in samba4 currently and samba3 has explicit configure checks for them. should fix bug #4496 metze (This used to be commit 7f61b3f0095efed81adc9022ba44e5c7df84d2f2)
Diffstat (limited to 'source3/lib/replace/replace.c')
-rw-r--r--source3/lib/replace/replace.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/source3/lib/replace/replace.c b/source3/lib/replace/replace.c
index 9e6c75bd358..8310d66d9e5 100644
--- a/source3/lib/replace/replace.c
+++ b/source3/lib/replace/replace.c
@@ -154,33 +154,6 @@ time_t rep_mktime(struct tm *t)
#endif /* !HAVE_MKTIME */
-#ifndef HAVE_INNETGR
-#if defined(HAVE_SETNETGRENT) && defined(HAVE_GETNETGRENT) && defined(HAVE_ENDNETGRENT)
-/*
- * Search for a match in a netgroup. This replaces it on broken systems.
- */
-int rep_innetgr(const char *group, const char *host, const char *user,
- const char *dom)
-{
- char *hst, *usr, *dm;
-
- setnetgrent(group);
- while (getnetgrent(&hst, &usr, &dm)) {
- if (((host == 0) || (hst == 0) || !strcmp(host, hst)) &&
- ((user == 0) || (usr == 0) || !strcmp(user, usr)) &&
- ((dom == 0) || (dm == 0) || !strcmp(dom, dm))) {
- endnetgrent();
- return (1);
- }
- }
- endnetgrent();
- return (0);
-}
-#endif /* HAVE_SETNETGRENT HAVE_GETNETGRENT HAVE_ENDNETGRENT */
-#endif /* HAVE_INNETGR */
-
-
-
#ifndef HAVE_INITGROUPS
/****************************************************************************
some systems don't have an initgroups call