diff options
Diffstat (limited to 'proto/ospf/hello.c')
-rw-r--r-- | proto/ospf/hello.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/proto/ospf/hello.c b/proto/ospf/hello.c index 18104d4..6e1fa92 100644 --- a/proto/ospf/hello.c +++ b/proto/ospf/hello.c @@ -36,13 +36,15 @@ ospf_hello_receive(struct ospf_hello_packet *ps, if (ntohs(ps->helloint) != ifa->helloint) { - log(L_WARN "%s%I%shello interval mismatch (%d).", beg, faddr, rec, ntohs(ps->helloint)); + log(L_WARN "%s%I%shello interval mismatch (%d).", beg, faddr, rec, + ntohs(ps->helloint)); return; } if (ntohl(ps->deadint) != ifa->helloint * ifa->deadc) { - log(L_ERR "%s%I%sdead interval mismatch (%d).", beg, faddr, rec, ntohl(ps->deadint)); + log(L_ERR "%s%I%sdead interval mismatch (%d).", beg, faddr, rec, + ntohl(ps->deadint)); return; } |