Commit 9bea556f authored by Klaas Freitag's avatar Klaas Freitag

Some cosmetic fixes to program error messages.

parent 0bd8e37b
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* that either displays or sets the characteristics of * that either displays or sets the characteristics of
* one or more of the system's networking interfaces. * one or more of the system's networking interfaces.
* *
* Version: $Id: ifconfig.c,v 1.20 1998/11/18 13:46:11 philip Exp $ * Version: $Id: ifconfig.c,v 1.21 1998/11/19 06:36:57 freitag Exp $
* *
* Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org> * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
* and others. Copyright 1993 MicroWalt Corporation * and others. Copyright 1993 MicroWalt Corporation
...@@ -380,7 +380,8 @@ static int set_flag(char *ifname, short flag) ...@@ -380,7 +380,8 @@ static int set_flag(char *ifname, short flag)
strcpy(ifr.ifr_name, ifname); strcpy(ifr.ifr_name, ifname);
if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) { if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) {
fprintf(stderr, _("%s: unknown interface.\n"), ifname); fprintf(stderr, _("%s: unknown interface: %s\n"),
ifname, strerror(errno));
return (-1); return (-1);
} }
strcpy(ifr.ifr_name, ifname); strcpy(ifr.ifr_name, ifname);
...@@ -400,7 +401,8 @@ static int clr_flag(char *ifname, short flag) ...@@ -400,7 +401,8 @@ static int clr_flag(char *ifname, short flag)
strcpy(ifr.ifr_name, ifname); strcpy(ifr.ifr_name, ifname);
if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) { if (ioctl(skfd, SIOCGIFFLAGS, &ifr) < 0) {
fprintf(stderr, _("%s: unknown interface.\n"), ifname); fprintf(stderr, _("%s: unknown interface: %s\n"),
ifname, strerror(errno));
return -1; return -1;
} }
strcpy(ifr.ifr_name, ifname); strcpy(ifr.ifr_name, ifname);
...@@ -447,7 +449,7 @@ static void usage(void) ...@@ -447,7 +449,7 @@ static void usage(void)
fprintf(stderr, _(" [txqueuelen len]\n")); fprintf(stderr, _(" [txqueuelen len]\n"));
#endif #endif
#ifdef HAVE_DYNAMIC #ifdef HAVE_DYNAMIC
fprintf(stderr, _(" [[-]dynamic]\n")); fprintf(stderr, _(" [[-]dynamic]\n"));
#endif #endif
fprintf(stderr, _(" [up] [down] ...\n")); fprintf(stderr, _(" [up] [down] ...\n"));
exit(1); exit(1);
...@@ -501,6 +503,7 @@ int main(int argc, char **argv) ...@@ -501,6 +503,7 @@ int main(int argc, char **argv)
perror("socket"); perror("socket");
exit(1); exit(1);
} }
/* Find any options. */ /* Find any options. */
argc--; argc--;
argv++; argv++;
...@@ -1077,7 +1080,7 @@ int main(int argc, char **argv) ...@@ -1077,7 +1080,7 @@ int main(int argc, char **argv)
#endif #endif
default: default:
fprintf(stderr, fprintf(stderr,
_("Don't know how to set addresses for this family.\n")); _("Don't know how to set addresses for family %d.\n"), ap->af);
exit(1); exit(1);
} }
if (r < 0) { if (r < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment