diff options
author | anton <anton@cvs.openbsd.org> | 2018-09-10 19:22:54 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2018-09-10 19:22:54 +0000 |
commit | 1142d4d09527e943bc4c137f33b3d496de058b7b (patch) | |
tree | 43859459c32a4bb8f2bffef1de4daab801cfc794 /usr.sbin | |
parent | 5d5f50d48c23b415547500de4b65ecd65d2fa6f4 (diff) |
logmsg(LOG_ERR) -> logerr(); ok tedu@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rebound/rebound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rebound/rebound.c b/usr.sbin/rebound/rebound.c index bfed2372b99..366102eef36 100644 --- a/usr.sbin/rebound/rebound.c +++ b/usr.sbin/rebound/rebound.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rebound.c,v 1.99 2018/09/08 13:17:19 anton Exp $ */ +/* $OpenBSD: rebound.c,v 1.100 2018/09/10 19:22:53 anton Exp $ */ /* * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> * @@ -779,7 +779,7 @@ readconfig(int conffd, union sockun *remoteaddr) if (strcmp(rectype, "A") == 0) { if (strlen(name) < 2 || name[strlen(name) - 1] != '.') { - logmsg(LOG_ERR, "do not like name %s", name); + logerr("do not like name %s", name); continue; } preloadA(name, value); |