]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
DEVEL15-cblater-bitmask-bug-20071024
authorDan Hyde <drh@umich.edu>
Wed, 24 Oct 2007 16:35:27 +0000 (16:35 +0000)
committerDerrick Brashear <shadow@dementia.org>
Wed, 24 Oct 2007 16:35:27 +0000 (16:35 +0000)
FIXES 75304

add missing ()

(cherry picked from commit 1d9ba682a5533bb720ef033287f78cff467aac11)

src/viced/callback.c

index 09d5dbd98318b6f4ad8f7f8e5a76f9a780d10897..a9e81f6185c31f4bf1aea95de01fabde5da6a847 100644 (file)
@@ -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);
 }