From 1d9ba682a5533bb720ef033287f78cff467aac11 Mon Sep 17 00:00:00 2001 From: Dan Hyde Date: Wed, 24 Oct 2007 16:33:31 +0000 Subject: [PATCH] cblater-bitmask-bug-20071024 FIXES 75304 add missing () --- 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 09d5dbd98..a9e81f618 100644 --- a/src/viced/callback.c +++ b/src/viced/callback.c @@ -1079,7 +1079,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