diff options
author | Michael Adam <obnox@samba.org> | 2011-03-04 14:25:58 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-03-22 22:49:57 +0100 |
commit | 474f6a0f752bc3fb96cbd6cdc766b916b244c5d5 (patch) | |
tree | 92945649dccce9885f77ee9bb48fb9b8255a7b99 | |
parent | ae5d35b09e9bcf39523a5300985720786860e65a (diff) | |
download | samba-474f6a0f752bc3fb96cbd6cdc766b916b244c5d5.tar.gz samba-474f6a0f752bc3fb96cbd6cdc766b916b244c5d5.tar.bz2 samba-474f6a0f752bc3fb96cbd6cdc766b916b244c5d5.zip |
s3:loadparm: remove unused parameter "idmap read only".
This has not been released yet and is now useless since we
use the "idmap config * : read only = ..." syntax.
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/param/loadparm.c | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index c37788f97e..b5b35a4623 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2999,7 +2999,6 @@ bool lp_winbind_rpc_only(void); bool lp_create_krb5_conf(void); int lp_winbind_max_domain_connections(void); const char *lp_idmap_backend(void); -bool lp_idmap_read_only(void); int lp_idmap_cache_time(void); int lp_idmap_negative_cache_time(void); int lp_keepalive(void); diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index f9b8f70670..d0dd3464ba 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -4552,15 +4552,6 @@ static struct parm_struct parm_table[] = { .flags = FLAG_ADVANCED, }, { - .label = "idmap read only", - .type = P_BOOL, - .p_class = P_GLOBAL, - .ptr = &Globals.bIdmapReadOnly, - .special = NULL, - .enum_list = NULL, - .flags = FLAG_ADVANCED, - }, - { .label = "idmap cache time", .type = P_INTEGER, .p_class = P_GLOBAL, @@ -5689,7 +5680,6 @@ int lp_winbind_max_domain_connections(void) } FN_GLOBAL_CONST_STRING(lp_idmap_backend, &Globals.szIdmapBackend) -FN_GLOBAL_BOOL(lp_idmap_read_only, &Globals.bIdmapReadOnly) FN_GLOBAL_INTEGER(lp_idmap_cache_time, &Globals.iIdmapCacheTime) FN_GLOBAL_INTEGER(lp_idmap_negative_cache_time, &Globals.iIdmapNegativeCacheTime) FN_GLOBAL_INTEGER(lp_keepalive, &Globals.iKeepalive) |