summaryrefslogtreecommitdiff
path: root/nscd/nscd.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-12-30 16:51:19 +0000
committerUlrich Drepper <drepper@redhat.com>2005-12-30 16:51:19 +0000
commit70e2ebba53c8a1ef93aa375d8055626b67524ba0 (patch)
treef96088d9e1c3afa5232f093c073068dcd3a40fcb /nscd/nscd.c
parent08be1ea82445c4e1dc562630dd5e5e2149a7f4c6 (diff)
downloadglibc-70e2ebba53c8a1ef93aa375d8055626b67524ba0.tar.gz
Remove last remnants of -S option support.
Diffstat (limited to 'nscd/nscd.c')
-rw-r--r--nscd/nscd.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/nscd/nscd.c b/nscd/nscd.c
index 40c335aef7..bf0ce46223 100644
--- a/nscd/nscd.c
+++ b/nscd/nscd.c
@@ -70,7 +70,6 @@ int disabled_passwd;
int disabled_group;
int go_background = 1;
-int secure_in_use;
static const char *conffile = _PATH_NSCDCONF;
time_t start_time;
@@ -366,16 +365,7 @@ parse_opt (int key, char *arg, struct argp_state *state)
break;
case 'S':
-#if 0
- if (strcmp (arg, "passwd,yes") == 0)
- secure_in_use = dbs[pwddb].secure = 1;
- else if (strcmp (arg, "group,yes") == 0)
- secure_in_use = dbs[grpdb].secure = 1;
- else if (strcmp (arg, "hosts,yes") == 0)
- secure_in_use = dbs[hstdb].secure = 1;
-#else
error (0, 0, _("secure services not implemented anymore"));
-#endif
break;
default: