summaryrefslogtreecommitdiffstats
path: root/proto/ospf/hello.c
diff options
context:
space:
mode:
authorOndrej Filip <feela@network.cz>2004-06-06 11:37:54 +0200
committerOndrej Filip <feela@network.cz>2004-06-06 11:37:54 +0200
commit2e10a170fe70e405b5d6cb2cb53cd9a15de25b73 (patch)
tree4420ce13a167ddd315bd737d332c9d914a09557f /proto/ospf/hello.c
parent66261211a9c9abd5e1591f0875d16da1e3975fcb (diff)
downloadbird-2e10a170fe70e405b5d6cb2cb53cd9a15de25b73.tar
bird-2e10a170fe70e405b5d6cb2cb53cd9a15de25b73.zip
Indentation.
Diffstat (limited to 'proto/ospf/hello.c')
-rw-r--r--proto/ospf/hello.c6
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;
}