From 1f7c3007b91e00662172dc6eda028f2e23ef7887 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 14 May 2007 14:53:45 +0000 Subject: r22855: fix the build (#if inside DEBUG macro not allowed...) Michael (This used to be commit f0570dc3d9e07475764e466901d4abfe939590f8) --- source3/nsswitch/winbindd_cache.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index 5e9a95aea1..28a0a09422 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -3463,14 +3463,12 @@ int winbindd_validate_cache(void) } if (WIFSIGNALED(child_status)) { DEBUG(10, ("winbindd_validate_cache: child terminated " - "by signal %d%s\n", - WTERMSIG(child_status), -#if defined(WCOREDUMP) - WCOREDUMP(child_status)?" (core dumped)":"" -#else - "" + "by signal %d\n", WTERMSIG(child_status))); +#ifdef WCOREDUMP + if (WCOREDUMP(child_status)) { + DEBUGADD(10, ("core dumped\n")); + } #endif - )); ret = WTERMSIG(child_status); } if (WIFSTOPPED(child_status)) { -- cgit