From 8822b3b6628e82ce85cb20d2bbbe2d0664b9aa8f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 19 Jul 2012 11:56:59 +1000 Subject: s4-param: Remove unused "idmap trusted only" When we revamp the idmap layer, we will end up just following the s3 options, and this option is not used there either. Andrew Bartlett Pair-Programmed-With: Andrew Tridgell --- lib/param/loadparm.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'lib') diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 6f66d0b1c8..f6156bd0e0 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -1247,16 +1247,6 @@ static struct parm_struct parm_table[] = { .enum_list = NULL, .flags = FLAG_ADVANCED, }, - { - .label = "idmap trusted only", - .type = P_BOOL, - .p_class = P_GLOBAL, - .offset = GLOBAL_VAR(bIdmapTrustedOnly), - .special = NULL, - .enum_list = NULL, - .flags = FLAG_ADVANCED, - }, - { .label = "ntp signd socket directory", .type = P_STRING, @@ -1533,7 +1523,6 @@ static struct loadparm_context *global_loadparm_context; #include "lib/param/param_functions.c" /* These functions remain only in lib/param for now */ -FN_GLOBAL_BOOL(idmap_trusted_only, bIdmapTrustedOnly) FN_GLOBAL_BOOL(readraw, bReadRaw) FN_GLOBAL_BOOL(unicode, bUnicode) FN_GLOBAL_BOOL(writeraw, bWriteRaw) @@ -3396,7 +3385,6 @@ struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx) #endif lpcfg_do_global_parameter(lp_ctx, "template shell", "/bin/false"); lpcfg_do_global_parameter(lp_ctx, "template homedir", "/home/%WORKGROUP%/%ACCOUNTNAME%"); - lpcfg_do_global_parameter(lp_ctx, "idmap trusted only", "False"); lpcfg_do_global_parameter(lp_ctx, "client signing", "default"); lpcfg_do_global_parameter(lp_ctx, "server signing", "default"); -- cgit