diff options
-rw-r--r-- | lib/param/loadparm.c | 1 | ||||
-rw-r--r-- | lib/param/param_functions.c | 1 | ||||
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/param/loadparm.c | 1 |
4 files changed, 2 insertions, 2 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index 24627960e1..fdb02c3305 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -87,6 +87,7 @@ static bool defaults_saved = false; char *szUsershareTemplateShare; \ char *szIdmapUID; \ char *szIdmapGID; \ + char *szIdmapBackend; \ int winbindMaxDomainConnections; \ int ismb2_max_credits; \ char *tls_keyfile; \ diff --git a/lib/param/param_functions.c b/lib/param/param_functions.c index 94652fad89..852f525c44 100644 --- a/lib/param/param_functions.c +++ b/lib/param/param_functions.c @@ -239,7 +239,6 @@ FN_GLOBAL_CONST_STRING(dnsdomain, szRealm_lower) FN_GLOBAL_CONST_STRING(dns_forwarder, dns_forwarder) FN_GLOBAL_CONST_STRING(dos_charset, dos_charset) FN_GLOBAL_CONST_STRING(guestaccount, szGuestaccount) -FN_GLOBAL_CONST_STRING(idmap_backend, szIdmapBackend) FN_GLOBAL_CONST_STRING(lockdir, szLockDir) FN_GLOBAL_CONST_STRING(logon_drive, szLogonDrive) FN_GLOBAL_CONST_STRING(logon_home, szLogonHome) diff --git a/source3/include/proto.h b/source3/include/proto.h index 09e46cab92..0b7549d104 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1080,7 +1080,6 @@ bool lp_winbind_normalize_names(void); 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); int lp_idmap_cache_time(void); int lp_idmap_negative_cache_time(void); bool lp_idmap_range(const char *domain_name, uint32_t *low, uint32_t *high); diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index ce40197748..29fcf4e1a1 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -124,6 +124,7 @@ static bool defaults_saved = false; char *szUsershareTemplateShare; \ char *szIdmapUID; \ char *szIdmapGID; \ + char *szIdmapBackend; \ int winbindMaxDomainConnections; \ int ismb2_max_credits; \ char *tls_keyfile; \ |