From de6305186aa3bf02284a0b13e4cbd1e4c433f1f8 Mon Sep 17 00:00:00 2001 From: anton Date: Mon, 10 Sep 2018 19:22:53 +0000 Subject: [PATCH] logmsg(LOG_ERR) -> logerr(); ok tedu@ --- usr.sbin/rebound/rebound.c | 4 ++-- 1 file 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 * @@ -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); -- 2.20.1