From 8c8e8b90668a48516f0bfa505e464443044ffd6a Mon Sep 17 00:00:00 2001 From: Dan Hyde Date: Wed, 24 Oct 2007 16:37:32 +0000 Subject: [PATCH] STABLE14-cblater-bitmask-bug-20071024 FIXES 75304 add missing () (cherry picked from commit 1d9ba682a5533bb720ef033287f78cff467aac11) --- src/viced/callback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/viced/callback.c b/src/viced/callback.c index 173dd1e7d..3c7a62d31 100644 --- a/src/viced/callback.c +++ b/src/viced/callback.c @@ -1181,7 +1181,7 @@ BreakDelayedCallBacks_r(struct host *host) cbstuff.nbreakers--; /* If we succeeded it's always ok to unset HFE_LATER */ - if (!host->hostFlags & VENUSDOWN) + if (!(host->hostFlags & VENUSDOWN)) host->hostFlags &= ~HFE_LATER; return (host->hostFlags & VENUSDOWN); } -- 2.39.5