diff options
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/radiusd/radiusd_module.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/radiusd/radiusd_module.c b/usr.sbin/radiusd/radiusd_module.c index e3a5e577dcc..d3889583e6f 100644 --- a/usr.sbin/radiusd/radiusd_module.c +++ b/usr.sbin/radiusd/radiusd_module.c @@ -1,4 +1,4 @@ -/* $OpenBSD: radiusd_module.c,v 1.7 2015/10/27 04:18:36 yasuoka Exp $ */ +/* $OpenBSD: radiusd_module.c,v 1.8 2015/12/01 18:21:24 mmcc Exp $ */ /* * Copyright (c) 2015 YASUOKA Masahiko <yasuoka@yasuoka.net> @@ -373,13 +373,13 @@ module_imsg_handler(struct module_base *base, struct imsg *imsg) module_start_module(base->ctx); if (!base->priv_dropped) { syslog(LOG_ERR, "Module tried to start with " - "root priviledge"); + "root privileges"); abort(); } } else { if (!base->priv_dropped) { syslog(LOG_ERR, "Module tried to start with " - "root priviledge"); + "root privileges"); abort(); } module_send_message(base, IMSG_OK, NULL); |