diff options
author | 2020-09-21 12:19:08 +0000 | |
---|---|---|
committer | 2020-09-21 12:19:08 +0000 | |
commit | 9a27d676676bb3b6b10f61ede6bb3a816c51d1a0 (patch) | |
tree | c7631bbdd0bdc6bd5268c797048ed47f09417c09 | |
parent | Correctly pass the "struct cpu_info" pointer along when establishing (diff) | |
download | wireguard-openbsd-9a27d676676bb3b6b10f61ede6bb3a816c51d1a0.tar.xz wireguard-openbsd-9a27d676676bb3b6b10f61ede6bb3a816c51d1a0.zip |
Missing space for '-i interval' option error message.
From <piotr (at) durlej (dot) net>. Thanks!
-rw-r--r-- | sbin/ping/ping.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/ping/ping.c b/sbin/ping/ping.c index 238a3798d3a..d198d233921 100644 --- a/sbin/ping/ping.c +++ b/sbin/ping/ping.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ping.c,v 1.240 2020/02/11 18:41:39 deraadt Exp $ */ +/* $OpenBSD: ping.c,v 1.241 2020/09/21 12:19:08 mglocker Exp $ */ /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. @@ -351,7 +351,7 @@ main(int argc, char *argv[]) errx(1, "interval is too small: %s", optarg); if (interval.tv_sec < 1 && ouid != 0) { errx(1, "only root may use an interval smaller" - "than one second"); + " than one second"); } options |= F_INTERVAL; break; |