From 177ff4d64c9a8891e827e927bd2354e28d4cc9d6 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Sat, 22 Nov 2003 04:49:32 +0000 Subject: [PATCH] fix winbind ping call so that SWAT correctly determines if winbindd is running; bug 398 (This used to be commit cb12d519cc40b964d022886538044e8613931199) --- source3/web/diagnose.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source3/web/diagnose.c b/source3/web/diagnose.c index efd6d1d0a19..46432c41f85 100644 --- a/source3/web/diagnose.c +++ b/source3/web/diagnose.c @@ -31,11 +31,7 @@ NSS_STATUS winbindd_request(int req_type, BOOL winbindd_running(void) { - - if (winbindd_request(WINBINDD_PING, NULL, NULL)) - return False; - - return True; + return winbind_ping(); } #endif -- 2.11.4.GIT