From: florian Date: Fri, 13 Jul 2018 09:16:15 +0000 (+0000) Subject: add missing IMSG_STARTUP; unclear why this ever worked X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8015e9884c547869fad42ef4b97eca108a8a4e26;p=openbsd add missing IMSG_STARTUP; unclear why this ever worked --- diff --git a/usr.sbin/rad/rad.c b/usr.sbin/rad/rad.c index 60075660e4e..c184c8c2efe 100644 --- a/usr.sbin/rad/rad.c +++ b/usr.sbin/rad/rad.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rad.c,v 1.6 2018/07/13 08:32:10 florian Exp $ */ +/* $OpenBSD: rad.c,v 1.7 2018/07/13 09:16:15 florian Exp $ */ /* * Copyright (c) 2018 Florian Obser @@ -304,6 +304,8 @@ main(int argc, char *argv[]) if (pledge("stdio rpath cpath sendfd", NULL) == -1) fatal("pledge"); + main_imsg_compose_frontend(IMSG_STARTUP, 0, NULL, 0); + event_dispatch(); main_shutdown();