diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-05-02 08:56:45 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2011-05-02 08:56:45 +0000 |
commit | d464ee80d244029998d5d793d178a7d21bf01942 (patch) | |
tree | 893aaf793c777c9d793a6c574c1aace2aa9ed221 /usr.sbin/ospf6d | |
parent | 0edb919d30f0fac4e371eb1f47afd8b7a53694e3 (diff) |
wrap long line
Diffstat (limited to 'usr.sbin/ospf6d')
-rw-r--r-- | usr.sbin/ospf6d/lsreq.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/lsreq.c b/usr.sbin/ospf6d/lsreq.c index f1bcea76727..fa416639f95 100644 --- a/usr.sbin/ospf6d/lsreq.c +++ b/usr.sbin/ospf6d/lsreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lsreq.c,v 1.6 2010/06/03 10:00:34 bluhm Exp $ */ +/* $OpenBSD: lsreq.c,v 1.7 2011/05/02 08:56:44 claudio Exp $ */ /* * Copyright (c) 2004, 2005, 2007 Esben Norby <norby@openbsd.org> @@ -103,7 +103,8 @@ recv_ls_req(struct nbr *nbr, char *buf, u_int16_t len) case NBR_STA_XCHNG: case NBR_STA_LOAD: case NBR_STA_FULL: - imsg_compose_event(iev_rde, IMSG_LS_REQ, nbr->peerid, 0, -1, buf, len); + imsg_compose_event(iev_rde, IMSG_LS_REQ, nbr->peerid, + 0, -1, buf, len); break; default: fatalx("recv_ls_req: unknown neighbor state"); |