From 93ac516e15ab771b6ed4eeacc556a2ec916387bb Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 14 Apr 2010 15:15:32 +0200 Subject: s3-auth: Added a function to get the server_info from the system user. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Günther Deschner --- source3/smbd/server.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3/smbd') diff --git a/source3/smbd/server.c b/source3/smbd/server.c index fcfabcd06f..7cd69467a8 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1318,6 +1318,11 @@ extern void build_options(bool screen); exit(1); #endif + if (!init_system_info()) { + DEBUG(0,("ERROR: failed to setup system user info.\n")); + return -1; + } + if (!print_backend_init(smbd_messaging_context())) exit(1); -- cgit