diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2020-09-21 12:19:09 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2020-09-21 12:19:09 +0000 |
commit | 2e4cce8aa8d9af36e0e2c24587afb27f1e1584ed (patch) | |
tree | 6dd8cc13924cc323bef0eb3f0cc46e9636aa5f60 /sbin/ping | |
parent | 9991a0e126d6056836ddc631bbaf587bb8d79caa (diff) |
Missing space for '-i interval' option error message.
From <piotr (at) durlej (dot) net>. Thanks!
Diffstat (limited to 'sbin/ping')
-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; |