From 307f4019a4ae6cbde3179b0f2c60ce5f6d1b1856 Mon Sep 17 00:00:00 2001 From: lukem Date: Mon, 21 Oct 2002 01:33:02 +0000 Subject: [PATCH] tweak usage now that multiple interfaces are supported... --- usr.sbin/rarpd/rarpd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.sbin/rarpd/rarpd.c b/usr.sbin/rarpd/rarpd.c index b4b7983d5da9..db4a5e1aa5d0 100644 --- a/usr.sbin/rarpd/rarpd.c +++ b/usr.sbin/rarpd/rarpd.c @@ -1,4 +1,4 @@ -/* $NetBSD: rarpd.c,v 1.46 2002/10/17 19:13:51 thorpej Exp $ */ +/* $NetBSD: rarpd.c,v 1.47 2002/10/21 01:33:02 lukem Exp $ */ /* * Copyright (c) 1990 The Regents of the University of California. @@ -28,7 +28,7 @@ __COPYRIGHT( #endif /* not lint */ #ifndef lint -__RCSID("$NetBSD: rarpd.c,v 1.46 2002/10/17 19:13:51 thorpej Exp $"); +__RCSID("$NetBSD: rarpd.c,v 1.47 2002/10/21 01:33:02 lukem Exp $"); #endif @@ -36,7 +36,7 @@ __RCSID("$NetBSD: rarpd.c,v 1.46 2002/10/17 19:13:51 thorpej Exp $"); * rarpd - Reverse ARP Daemon * * Usage: rarpd -a [-d|-f] [-l] - * rarpd [-d|-f] [-l] interface + * rarpd [-d|-f] [-l] interface [...] */ #include @@ -319,7 +319,7 @@ void usage(void) { (void) fprintf(stderr, "usage: rarpd -a [-d|-f] [-l]\n"); - (void) fprintf(stderr, " rarpd [-d|-f] [-l] interface\n"); + (void) fprintf(stderr, " rarpd [-d|-f] [-l] interface [...]\n"); exit(1); }