diff options
author | anton <anton@cvs.openbsd.org> | 2018-05-01 15:14:44 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2018-05-01 15:14:44 +0000 |
commit | d85433c1cd644c9b326b14fcfe553c76df723c38 (patch) | |
tree | 8b057cc90385389c574e12e32f4d5ae6ba219d30 /usr.sbin/rebound | |
parent | 62e93d8b03da7fdb715e5f8c2d9001e8e767fa6d (diff) |
Remove extraneous new line from error message.
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); |