diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-06 09:37:54 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-06 09:37:54 +0000 |
commit | 2e10a170fe70e405b5d6cb2cb53cd9a15de25b73 (patch) | |
tree | 4420ce13a167ddd315bd737d332c9d914a09557f /proto/ospf/hello.c | |
parent | 66261211a9c9abd5e1591f0875d16da1e3975fcb (diff) |
Indentation.
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 18104d49..6e1fa92a 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; } |