diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-31 01:29:23 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-31 01:29:23 +0200 |
commit | 0884f492232bb81366c04982bf4935307d273c26 (patch) | |
tree | d415a4c886579b0a1579c91e59b71ab7a7f4dbfa | |
parent | 3b0b2cb61f4e9c3bfbb4770b941c5aba56d9e70e (diff) | |
download | bird-0884f492232bb81366c04982bf4935307d273c26.tar bird-0884f492232bb81366c04982bf4935307d273c26.zip |
Ehm, in had this in code: "break; i--;" :-(
-rw-r--r-- | proto/ospf/dbdes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c index 83ef4f1..cd46bf3 100644 --- a/proto/ospf/dbdes.c +++ b/proto/ospf/dbdes.c @@ -78,8 +78,8 @@ ospf_dbdes_tx(struct ospf_neighbor *n) if(sn==STAIL(n->ifa->oa->lsal)) { - break; /* Should set some flag? */ i--; + break; /* Should set some flag? */ } sn=sn->next; lsa++; |