1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

spray takes no additional arguments; from ferdek.y.no-ip.pl

This commit is contained in:
deraadt 2008-06-02 19:06:17 +00:00
parent e8fb0733d2
commit 9516b4324e
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
.\" $OpenBSD: spray.8,v 1.9 2007/05/31 19:20:29 jmc Exp $
.\" $OpenBSD: spray.8,v 1.10 2008/06/02 19:06:17 deraadt Exp $
.\"
.\" Copyright (c) 1994 James A. Jegers
.\" All rights reserved.
@ -22,7 +22,7 @@
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd $Mdocdate: May 31 2007 $
.Dd $Mdocdate: June 2 2008 $
.Dt SPRAY 8
.Os
.Sh NAME
@ -33,7 +33,7 @@
.Op Fl c Ar count
.Op Fl d Ar delay
.Op Fl l Ar length
.Ar host ...
.Ar host
.Sh DESCRIPTION
.Nm
sends multiple RPC packets to

View File

@ -1,4 +1,4 @@
/* $OpenBSD: spray.c,v 1.8 2008/03/17 16:28:43 sobrado Exp $ */
/* $OpenBSD: spray.c,v 1.9 2008/06/02 19:06:17 deraadt Exp $ */
/*
* Copyright (c) 1993 Winning Strategies, Inc.
@ -29,7 +29,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: spray.c,v 1.8 2008/03/17 16:28:43 sobrado Exp $
* $Id: spray.c,v 1.9 2008/06/02 19:06:17 deraadt Exp $
*/
#include <err.h>
@ -228,6 +228,6 @@ void
usage(void)
{
fprintf(stderr,
"usage: spray [-c count] [-d delay] [-l length] host ...\n");
"usage: spray [-c count] [-d delay] [-l length] host\n");
exit(1);
}