summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorHenning Brauer <henning@cvs.openbsd.org>2003-12-26 21:40:41 +0000
committerHenning Brauer <henning@cvs.openbsd.org>2003-12-26 21:40:41 +0000
commit71adc11d3d9b7109bb6dc85654197c055eecd4ac (patch)
tree9822ee4447ecc4187cb41a76dbcc4face98e5bfc /usr.sbin
parent7808764c2cea28ec6a630dc7945bbaef9b2ee8f4 (diff)
erm, oups, well, put back rde_pid and io_pid assignments that got lost
somehow...
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bgpd/bgpd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/bgpd/bgpd.c b/usr.sbin/bgpd/bgpd.c
index e5a8d8aec2e..a821d60f70c 100644
--- a/usr.sbin/bgpd/bgpd.c
+++ b/usr.sbin/bgpd/bgpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bgpd.c,v 1.40 2003/12/26 20:59:54 henning Exp $ */
+/* $OpenBSD: bgpd.c,v 1.41 2003/12/26 21:40:40 henning Exp $ */
/*
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
@@ -172,8 +172,8 @@ main(int argc, char *argv[])
fatal("fcntl");
/* fork children */
- rde_main(&conf, pipe_m2r, pipe_s2r);
- session_main(&conf, pipe_m2s, pipe_s2r);
+ rde_pid = rde_main(&conf, pipe_m2r, pipe_s2r);
+ io_pid = session_main(&conf, pipe_m2s, pipe_s2r);
setproctitle("parent");