diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 13:23:10 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-02-09 13:23:10 -0800 |
commit | 1330a02df4e0eaa9bdfb8ab841e5dd2130132093 (patch) | |
tree | c53db4b698ffc1967dc835dac4acbc872556f905 /lib/if.h | |
parent | 36c9799e43c48394008c770ba283387a63c8e6af (diff) | |
download | quagga-1330a02df4e0eaa9bdfb8ab841e5dd2130132093.tar.bz2 quagga-1330a02df4e0eaa9bdfb8ab841e5dd2130132093.tar.xz |
whitespace fix
Diffstat (limited to 'lib/if.h')
-rw-r--r-- | lib/if.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -277,7 +277,7 @@ static inline int if_is_operative (const struct interface *ifp) { return ((ifp->flags & IFF_UP) && - (ifp->flags & IFF_RUNNING || + ((ifp->flags & IFF_RUNNING) || !CHECK_FLAG(ifp->status, ZEBRA_INTERFACE_LINKDETECTION))); } |