From f099feaa01b6548cb60cb9d7d50b1f196b1af878 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 10 Nov 2011 13:37:54 +1100 Subject: s3-param remove lp_domain_logons(), always use IS_DC This makes the code internally consistant. Andrew Bartlett Pair-Programmed-With: Amitay Isaacs --- source3/include/proto.h | 1 - source3/nmbd/nmbd_become_dmb.c | 2 +- source3/nmbd/nmbd_processlogon.c | 2 +- source3/param/loadparm.c | 2 +- source3/param/loadparm_ctx.c | 1 - 5 files changed, 3 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/include/proto.h b/source3/include/proto.h index b2a10f69d6c..b9e7f384ab3 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1275,7 +1275,6 @@ bool lp_dns_proxy(void); bool lp_we_are_a_wins_server(void); bool lp_wins_proxy(void); bool lp_local_master(void); -bool lp_domain_logons(void); const char **lp_init_logon_delayed_hosts(void); int lp_init_logon_delay(void); bool lp_load_printers(void); diff --git a/source3/nmbd/nmbd_become_dmb.c b/source3/nmbd/nmbd_become_dmb.c index 276c381f6c8..a3b3d585ce9 100644 --- a/source3/nmbd/nmbd_become_dmb.c +++ b/source3/nmbd/nmbd_become_dmb.c @@ -375,7 +375,7 @@ void add_domain_names(time_t t) lastrun = t; /* Do the "internet group" - <1c> names. */ - if (lp_domain_logons()) + if (IS_DC) add_logon_names(); /* Do the domain master names. */ diff --git a/source3/nmbd/nmbd_processlogon.c b/source3/nmbd/nmbd_processlogon.c index 43ffd726c67..4fe5d0ee876 100644 --- a/source3/nmbd/nmbd_processlogon.c +++ b/source3/nmbd/nmbd_processlogon.c @@ -329,7 +329,7 @@ void process_logon_packet(struct packet_struct *p, const char *buf,int len, } ip = ((const struct sockaddr_in *)pss)->sin_addr; - if (!lp_domain_logons()) { + if (!IS_DC) { DEBUG(5,("process_logon_packet: Logon packet received from IP %s and domain \ logons are not enabled.\n", inet_ntoa(p->ip) )); return; diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 11da2a96875..285023944a4 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -5292,7 +5292,7 @@ FN_GLOBAL_BOOL(lp_dns_proxy, bDNSproxy) FN_GLOBAL_BOOL(lp_we_are_a_wins_server, bWINSsupport) FN_GLOBAL_BOOL(lp_wins_proxy, bWINSproxy) FN_GLOBAL_BOOL(lp_local_master, bLocalMaster) -FN_GLOBAL_BOOL(lp_domain_logons, bDomainLogons) +static FN_GLOBAL_BOOL(lp_domain_logons, bDomainLogons) FN_GLOBAL_LIST(lp_init_logon_delayed_hosts, szInitLogonDelayedHosts) FN_GLOBAL_INTEGER(lp_init_logon_delay, InitLogonDelay) FN_GLOBAL_BOOL(lp_load_printers, bLoadPrinters) diff --git a/source3/param/loadparm_ctx.c b/source3/param/loadparm_ctx.c index 5d4c06d31a7..1e11eeb4b20 100644 --- a/source3/param/loadparm_ctx.c +++ b/source3/param/loadparm_ctx.c @@ -74,7 +74,6 @@ static const struct loadparm_s3_context s3_fns = .dump = lp_dump, .server_role = lp_server_role, - .domain_logons = lp_domain_logons, .domain_master = lp_domain_master, .winbind_separator = lp_winbind_separator, -- cgit