diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-17 00:43:30 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-17 00:43:30 +0200 |
commit | 31834faaf3ab055242e3a9998a37029b56f54d8a (patch) | |
tree | 093bbb4dd5cede7a0e66e2a2a82a216b17ca8e05 | |
parent | b1c9d871614874092e397ae505799be82284713d (diff) | |
download | bird-31834faaf3ab055242e3a9998a37029b56f54d8a.tar bird-31834faaf3ab055242e3a9998a37029b56f54d8a.zip |
Ehmm, removed 'if(1 || ...' so I can test the second part .
-rw-r--r-- | proto/ospf/rt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/rt.c b/proto/ospf/rt.c index 9b1b5fa..369e1f6 100644 --- a/proto/ospf/rt.c +++ b/proto/ospf/rt.c @@ -324,7 +324,7 @@ ospf_ext_spfa(struct proto_ospf *po) /* FIXME looking into inter-area */ } if(absr==NULL) continue; - if(1 || ipa_compare(lt->fwaddr,ipa_from_u32(0))==0) /* FIXME add fwaddr */ + if(ipa_compare(lt->fwaddr,ipa_from_u32(0))==0) { if(lt->etos>0) { |