diff options
author | Bernd Eckenfels <net-tools@lina.inka.de> | 2001-11-25 06:55:06 +0000 |
---|---|---|
committer | Bernd Eckenfels <net-tools@lina.inka.de> | 2001-11-25 06:55:06 +0000 |
commit | 4478c3cf6db7c31db3b69368c9dec7dbef751205 (patch) | |
tree | efb376d1312d7fdf8c0683919530ab7355b36406 /nameif.c | |
parent | this fixes Debian Bug #109164 (netstat -ci does only print stats once). It (diff) | |
download | net-tools-4478c3cf6db7c31db3b69368c9dec7dbef751205.tar.gz net-tools-4478c3cf6db7c31db3b69368c9dec7dbef751205.tar.bz2 net-tools-4478c3cf6db7c31db3b69368c9dec7dbef751205.zip |
fixed debian bug#111642 reported by Jonathan Amery <jdamery@pick.ucam.org>
(newline missing in nameif usage)
Diffstat (limited to 'nameif.c')
-rw-r--r-- | nameif.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); } |