From owner-svn-src-head@FreeBSD.ORG Tue Jun 30 20:22:36 2009 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B49D11065674; Tue, 30 Jun 2009 20:22:36 +0000 (UTC) (envelope-from marc@msys.ch) Received: from sleipnir.msys.ch (unknown [IPv6:2001:4060:c0de:f000::3]) by mx1.freebsd.org (Postfix) with ESMTP id 3AAC48FC1F; Tue, 30 Jun 2009 20:22:36 +0000 (UTC) (envelope-from marc@msys.ch) Received: from mail.msys.ch (smtp.msys.ch [157.161.101.10]) by sleipnir.msys.ch (8.14.3/8.14.1) with ESMTP id n5UKMSix024820 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 30 Jun 2009 22:22:28 +0200 (CEST) Received: from [192.168.17.111] (gw.vnode.ch [62.12.170.129]) (authenticated bits=0) by mail.msys.ch (8.14.3/8.14.1) with ESMTP id n5UKLcRP025084 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT); Tue, 30 Jun 2009 22:22:28 +0200 (CEST) Message-Id: From: Marc Balmer To: Thomas Backman In-Reply-To: Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v935.3) Date: Tue, 30 Jun 2009 22:22:28 +0200 References: <200906301851.n5UIpNJQ089171@svn.freebsd.org> X-Mailer: Apple Mail (2.935.3) X-SMTP-Vilter-Version: 1.3.6 X-Spamd-Symbols: AWL Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, Martin Blapp , src-committers@FreeBSD.org Subject: Re: svn commit: r195200 - in head/usr.sbin: . wake X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Jun 2009 20:22:37 -0000 Am 30.06.2009 um 22:02 schrieb Thomas Backman: > On Jun 30, 2009, at 08:51 PM, Martin Blapp wrote: > >> >> +void >> +usage(void) >> +{ >> + (void)fprintf(stderr, "usage: wake interface lladdr\n"); >> + exit(0); >> +} >> [...] >> + for (n = 2; n < argc; n++) >> + if (wake(argv[1], argv[n])) >> + warnx("error sending Wake on LAN frame over %s to %s", >> + argv[1], argv[n]); >> + return 0; >> +} > The usage() function doesn't mention the possibility of specifying > multiple hosts (although it appears the manual page does mention it). yes, that is wrong. I will send mbr@ a diff shortly. > > Regards, > Thomas > _______________________________________________ > svn-src-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-src-all > To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"