diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2015-12-01 18:21:25 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2015-12-01 18:21:25 +0000 |
commit | ed8fccc8ba95ec41b58445f012f3e634423aece1 (patch) | |
tree | 173c6cc14bea16d475988f7935bf5f1d16243b7b /usr.sbin | |
parent | 3b451ef3112b9076f2de2dbee576eb162e602851 (diff) |
Fix a couple typos. ok yasuoka@
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); |