From: Andrew Bartlett Date: Sat, 3 Mar 2012 01:18:21 +0000 (+1100) Subject: s3-lsasd: Fix debug messages on registration failure X-Git-Tag: tdb-1.2.10~362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14d31376aab703dbb14d1cd786baeaf84361cd96;p=thirdparty%2Fsamba.git s3-lsasd: Fix debug messages on registration failure Autobuild-User: Andrew Bartlett Autobuild-Date: Mon Mar 5 09:50:17 CET 2012 on sn-devel-104 --- diff --git a/source3/rpc_server/lsasd.c b/source3/rpc_server/lsasd.c index 416a3b3c134..ad184d89c95 100644 --- a/source3/rpc_server/lsasd.c +++ b/source3/rpc_server/lsasd.c @@ -930,21 +930,21 @@ void start_lsasd(struct tevent_context *ev_ctx, status = rpc_lsarpc_init(NULL); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("Failed to register winreg rpc inteface! (%s)\n", + DEBUG(0, ("Failed to register lsarpc rpc inteface in lsasd! (%s)\n", nt_errstr(status))); exit(1); } status = rpc_samr_init(NULL); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("Failed to register lsasd rpc inteface! (%s)\n", + DEBUG(0, ("Failed to register samr rpc inteface in lsasd! (%s)\n", nt_errstr(status))); exit(1); } status = rpc_netlogon_init(NULL); if (!NT_STATUS_IS_OK(status)) { - DEBUG(0, ("Failed to register lsasd rpc inteface! (%s)\n", + DEBUG(0, ("Failed to register netlogon rpc inteface in lsasd! (%s)\n", nt_errstr(status))); exit(1); }