diff options
author | 2004-12-20 15:10:05 +0000 | |
---|---|---|
committer | 2004-12-20 15:10:05 +0000 | |
commit | 519e28a91f6d46dfd9b9fc09b05153a63ce839f3 (patch) | |
tree | 90c5c720b2f074724bb6d648b716bff4eb031f2d | |
parent | blowfish defaults to 6 rounds. (diff) | |
download | wireguard-openbsd-519e28a91f6d46dfd9b9fc09b05153a63ce839f3.tar.xz wireguard-openbsd-519e28a91f6d46dfd9b9fc09b05153a63ce839f3.zip |
some typos in log messages.
ok henning@
-rw-r--r-- | usr.sbin/ntpd/ntpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ntpd/ntpd.c b/usr.sbin/ntpd/ntpd.c index 4e7895929f0..cd9b6297140 100644 --- a/usr.sbin/ntpd/ntpd.c +++ b/usr.sbin/ntpd/ntpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ntpd.c,v 1.25 2004/12/06 20:57:17 mickey Exp $ */ +/* $OpenBSD: ntpd.c,v 1.26 2004/12/20 15:10:05 moritz Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -164,7 +164,7 @@ main(int argc, char *argv[]) } if (nfds == 0 && conf.settime) { - log_debug("no reply received, skipping initial time" + log_debug("no reply received, skipping initial time " "setting"); conf.settime = 0; timeout = INFTIM; @@ -175,7 +175,7 @@ main(int argc, char *argv[]) if (nfds > 0 && (pfd[PFD_PIPE].revents & POLLOUT)) if (msgbuf_write(&ibuf->w) < 0) { - log_warn("pipe write error (to child"); + log_warn("pipe write error (to child)"); quit = 1; } |