From 7f8df9c217d9b5771a03067636e822ad4ffc030e Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 24 Jun 2008 12:29:05 +0200 Subject: winbindd: don't panic if messaging_init() fails - return NULL instead. Leave appropriate handling to the callers. Michael (This used to be commit 3e0c24323af5f10fa68ae8aad552b7346536c908) --- source3/winbindd/winbindd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd/winbindd.c') diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index c017916f09..a6c3dd8651 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -49,7 +49,7 @@ struct messaging_context *winbind_messaging_context(void) if (!ctx && !(ctx = messaging_init(NULL, server_id_self(), winbind_event_context()))) { - smb_panic("Could not init winbind messaging context"); + DEBUG(0, ("Could not init winbind messaging context.\n")); } return ctx; } -- cgit