summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rad
diff options
context:
space:
mode:
authorpamela <pamela@openbsd.org>2019-03-12 19:40:01 +0000
committerpamela <pamela@openbsd.org>2019-03-12 19:40:01 +0000
commitce1003a9120f8c113e3e10e5c32968b93bec3c37 (patch)
tree10dc7d0bf498d8696c6bc9e746d3757f50eb90d1 /usr.sbin/rad
parentIn the manner of recent changes to unwind(8) and slaacd(8), make imsg (diff)
downloadwireguard-openbsd-ce1003a9120f8c113e3e10e5c32968b93bec3c37.tar.xz
wireguard-openbsd-ce1003a9120f8c113e3e10e5c32968b93bec3c37.zip
fix line break
OK florian@
Diffstat (limited to 'usr.sbin/rad')
-rw-r--r--usr.sbin/rad/engine.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/rad/engine.c b/usr.sbin/rad/engine.c
index 4e6089713ef..d8aa56715d5 100644
--- a/usr.sbin/rad/engine.c
+++ b/usr.sbin/rad/engine.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: engine.c,v 1.13 2019/03/12 18:47:57 pamela Exp $ */
+/* $OpenBSD: engine.c,v 1.14 2019/03/12 19:40:01 pamela Exp $ */
/*
* Copyright (c) 2018 Florian Obser <florian@openbsd.org>
@@ -319,7 +319,8 @@ engine_dispatch_main(int fd, short event, void *bula)
break;
case IMSG_RECONF_CONF:
if (IMSG_DATA_SIZE(imsg) != sizeof(struct rad_conf))
- fatalx("%s: IMSG_RECONF_CONF wrong length: %lu", __func__, IMSG_DATA_SIZE(imsg));
+ fatalx("%s: IMSG_RECONF_CONF wrong length: %lu",
+ __func__, IMSG_DATA_SIZE(imsg));
if ((nconf = malloc(sizeof(struct rad_conf))) == NULL)
fatal(NULL);
memcpy(nconf, imsg.data, sizeof(struct rad_conf));