From b615b7060188bbc33a8e8b38b2b2b14b239dc735 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Fri, 15 Oct 2010 17:58:39 +0200 Subject: s3-winbind: Fixed init order. We need the system server info in the rpc services. Autobuild-User: Andreas Schneider Autobuild-Date: Mon Oct 18 12:43:16 UTC 2010 on sn-devel-104 --- source3/winbindd/winbindd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index d2344fd696..b8a9e16075 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -1298,14 +1298,14 @@ int main(int argc, char **argv, char **envp) winbindd_register_handlers(); - rpc_lsarpc_init(NULL); - rpc_samr_init(NULL); - if (!init_system_info()) { DEBUG(0,("ERROR: failed to setup system user info.\n")); exit(1); } + rpc_lsarpc_init(NULL); + rpc_samr_init(NULL); + /* setup listen sockets */ if (!winbindd_setup_listeners()) { -- cgit