diff options
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/build_options.c | 1 | ||||
-rw-r--r-- | source3/smbd/change_trust_pw.c | 1 | ||||
-rw-r--r-- | source3/smbd/server.c | 4 |
3 files changed, 2 insertions, 4 deletions
diff --git a/source3/smbd/build_options.c b/source3/smbd/build_options.c index 8129f22898..f52c53dda5 100644 --- a/source3/smbd/build_options.c +++ b/source3/smbd/build_options.c @@ -188,6 +188,7 @@ void build_options(BOOL screen) output(screen," SBINDIR: %s\n", dyn_SBINDIR); output(screen," BINDIR: %s\n", dyn_BINDIR); output(screen," LOCKDIR: %s\n",dyn_LOCKDIR); + output(screen," DRIVERFILE: %s\n", dyn_DRIVERFILE); output(screen," LOGFILEBASE: %s\n", dyn_LOGFILEBASE); /*Output various other options (most map to defines in the configure script*/ diff --git a/source3/smbd/change_trust_pw.c b/source3/smbd/change_trust_pw.c index 28a004eba8..e4a7fbae6b 100644 --- a/source3/smbd/change_trust_pw.c +++ b/source3/smbd/change_trust_pw.c @@ -120,6 +120,7 @@ account password for domain %s.\n", domain)); if(NT_STATUS_IS_OK(res = modify_trust_password( domain, dc_name, old_trust_passwd_hash))) break; + } else { res = modify_trust_password( domain, remote_machine, old_trust_passwd_hash); diff --git a/source3/smbd/server.c b/source3/smbd/server.c index e9092858f4..342c7c85cf 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -373,10 +373,6 @@ static BOOL open_sockets_smbd(BOOL is_daemon,const char *smb_ports) return False; } - /* Load DSO's */ - if(lp_modules()) - smb_load_modules(lp_modules()); - return True; } /* The parent doesn't need this socket */ |