diff options
Diffstat (limited to 'usr.sbin/rebound')
-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 1b7800ffe66..e118fa9a13b 100644 --- a/usr.sbin/rebound/rebound.c +++ b/usr.sbin/rebound/rebound.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rebound.c,v 1.97 2018/05/01 15:11:42 anton Exp $ */ +/* $OpenBSD: rebound.c,v 1.98 2018/05/01 15:14:43 anton Exp $ */ /* * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> * @@ -765,7 +765,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\n", name); + logmsg(LOG_ERR, "do not like name %s", name); continue; } preloadA(name, value); |