From: Dan Hyde Date: Wed, 24 Oct 2007 16:37:32 +0000 (+0000) Subject: STABLE14-cblater-bitmask-bug-20071024 X-Git-Tag: BP-openafs-stable-1_4_6~3 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=8c8e8b90668a48516f0bfa505e464443044ffd6a;p=packages%2Fo%2Fopenafs.git STABLE14-cblater-bitmask-bug-20071024 FIXES 75304 add missing () (cherry picked from commit 1d9ba682a5533bb720ef033287f78cff467aac11) --- 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); }