diff options
author | Ondrej Filip <feela@network.cz> | 1999-05-14 10:50:25 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 1999-05-14 10:50:25 +0200 |
commit | 11ce4490fac7d0446802738f5fb8fd68c36bd30b (patch) | |
tree | 7a95eff35f6b76967f0431416de71eef2c43b9e2 | |
parent | 67ff91302f21f6a40201bcc8a01c9c76eaaf1ed1 (diff) | |
download | bird-11ce4490fac7d0446802738f5fb8fd68c36bd30b.tar bird-11ce4490fac7d0446802738f5fb8fd68c36bd30b.zip |
*** empty log message ***
-rw-r--r-- | proto/ospf/ospf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/proto/ospf/ospf.c b/proto/ospf/ospf.c index 5c303d4..ef65064 100644 --- a/proto/ospf/ospf.c +++ b/proto/ospf/ospf.c @@ -34,7 +34,6 @@ ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p, ip_ntop(ps->netmask,sip); log("%s: Bad OSPF packet from %d received: bad netmask %s.", p->name, ntohl(((struct ospf_packet *)ps)->routerid), sip); - /*ip_ntop(ps->netmask, sip));*/ log("%s: Discarding",p->name); return; } @@ -480,7 +479,6 @@ ospf_postconfig(struct proto_config *c) DBG( " OSPF: postconfig\n" ); } - struct protocol proto_ospf = { name: "OSPF", init: ospf_init, @@ -489,3 +487,4 @@ struct protocol proto_ospf = { preconfig: ospf_preconfig, postconfig: ospf_postconfig, }; + |