From 4d7cfa129353001759c6224cc5c590be7e043fe9 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Wed, 16 Jul 2008 05:25:09 +0000 Subject: [PATCH] softsig-structure-handling-20080716 LICENSE IPL10 this is sort of a dumb ifdef. harmless, but fix it to be what it's supposed to --- src/util/softsig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/softsig.c b/src/util/softsig.c index 98c04cf492..c88ca20a7e 100644 --- a/src/util/softsig.c +++ b/src/util/softsig.c @@ -37,7 +37,7 @@ static pthread_t softsig_tid; static struct { void (*handler) (int); int pending; -#if !defined(AFS_DARWIN60_ENV) || defined(AFS_NBSD30_ENV) || !defined(AFS_NBSD_ENV) +#if !(defined(AFS_DARWIN60_ENV) || (defined(AFS_NBSD_ENV) && !defined(AFS_NBSD30_ENV))) int fatal; #endif /* !defined(AFS_DARWIN60_ENV) || !defined(AFS_NBSD_ENV) */ int inited;