mirror of
https://github.com/samba-team/samba.git
synced 2025-01-22 22:04:08 +03:00
s3-winbind: Initialize the server_info on winbindd start.
This commit is contained in:
parent
30d25210a9
commit
9fa7239907
@ -1255,6 +1255,7 @@ WINBINDD_OBJ1 = \
|
||||
winbindd/winbindd_pam_chauthtok.o \
|
||||
winbindd/winbindd_pam_chng_pswd_auth_crap.o \
|
||||
winbindd/winbindd_pam_logoff.o \
|
||||
auth/auth_util.o \
|
||||
auth/token_util.o \
|
||||
auth/check_samsec.o \
|
||||
auth/server_info.o \
|
||||
|
@ -1289,6 +1289,11 @@ int main(int argc, char **argv, char **envp)
|
||||
|
||||
winbindd_register_handlers();
|
||||
|
||||
if (!init_system_info()) {
|
||||
DEBUG(0,("ERROR: failed to setup system user info.\n"));
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* setup listen sockets */
|
||||
|
||||
if (!winbindd_setup_listeners()) {
|
||||
|
@ -640,6 +640,7 @@ WINBINDD_SRC1 = '''winbindd/winbindd.c
|
||||
winbindd/winbindd_pam_chauthtok.c
|
||||
winbindd/winbindd_pam_auth_crap.c
|
||||
winbindd/winbindd_pam_chng_pswd_auth_crap.c
|
||||
auth/auth_util.c
|
||||
auth/token_util.c
|
||||
auth/check_samsec.c
|
||||
auth/server_info.c
|
||||
|
Loading…
x
Reference in New Issue
Block a user