diff options
Diffstat (limited to 'proto/ospf')
-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, }; + |