diff options
author | 2009-07-28 19:16:34 +0000 | |
---|---|---|
committer | 2009-07-28 19:16:34 +0000 | |
commit | 1a2f8e2e4c6ad7af692f18a3fea881a5b5cfc82b (patch) | |
tree | 094e513a6fdede9afe4acb79621d48898251fd19 | |
parent | Running 'ospf6ctl show' twice caused ospf6d to fatal. Cause was a missing - (diff) | |
download | wireguard-openbsd-1a2f8e2e4c6ad7af692f18a3fea881a5b5cfc82b.tar.xz wireguard-openbsd-1a2f8e2e4c6ad7af692f18a3fea881a5b5cfc82b.zip |
More fallout from the r1.31 commit. This time PID and the fd got swapped.
Again from stsp@
-rw-r--r-- | usr.sbin/ospf6d/rde.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/rde.c b/usr.sbin/ospf6d/rde.c index 85e083c08b3..eb69f32bc87 100644 --- a/usr.sbin/ospf6d/rde.c +++ b/usr.sbin/ospf6d/rde.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde.c,v 1.32 2009/07/28 19:14:25 claudio Exp $ */ +/* $OpenBSD: rde.c,v 1.33 2009/07/28 19:16:34 claudio Exp $ */ /* * Copyright (c) 2004, 2005 Claudio Jeker <claudio@openbsd.org> @@ -358,7 +358,7 @@ rde_dispatch_imsg(int fd, short event, void *bula) "packet", imsg.hdr.peerid); imsg_compose_event(iev_ospfe, IMSG_DD_END, - imsg.hdr.peerid, -1, 0, NULL, 0); + imsg.hdr.peerid, 0, -1, NULL, 0); break; case IMSG_LS_REQ: nbr = rde_nbr_find(imsg.hdr.peerid); |