From: Bernd Eckenfels Date: Sun, 25 Nov 2001 06:55:06 +0000 (+0000) Subject: fixed debian bug#111642 reported by Jonathan Amery X-Git-Tag: upstream/1.99_20121209git~208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4478c3cf6db7c31db3b69368c9dec7dbef751205;p=platform%2Fupstream%2Fnet-tools.git fixed debian bug#111642 reported by Jonathan Amery (newline missing in nameif usage) --- diff --git a/nameif.c b/nameif.c index 8d79b50..307bbeb 100644 --- a/nameif.c +++ b/nameif.c @@ -3,7 +3,7 @@ * Writen 2000 by Andi Kleen. * Subject to the Gnu Public License, version 2. * TODO: make it support token ring etc. - * $Id: nameif.c,v 1.1 2000/10/18 17:26:29 ak Exp $ + * $Id: nameif.c,v 1.2 2001/11/25 06:55:06 ecki Exp $ */ #ifndef _GNU_SOURCE #define _GNU_SOURCE @@ -200,7 +200,7 @@ struct option lopt[] = { void usage(void) { - fprintf(stderr, _("usage: nameif [-c configurationfile] [-s] {ifname macaddress}")); + fprintf(stderr, _("usage: nameif [-c configurationfile] [-s] {ifname macaddress}\n")); exit(1); }