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

add missing ()

(cherry picked from commit 1d9ba682a5533bb720ef033287f78cff467aac11)

src/viced/callback.c

index 173dd1e7d77e3d6e3b2a73c67b28981bb0c9ef1e..3c7a62d31fb7cffe093864190eb3d632fe30ec4e 100644 (file)
@@ -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);
 }