If the first argument doesn't start with '-' assume that it is an

interface.  This augments the default to an appropriate interface
code.

# These programs should be merged into ifconfig, ala NetBSD, but that's
# a fight for another day.

Idea from: OpenBSD
This commit is contained in:
Warner Losh 2000-12-31 01:51:23 +00:00
parent 338c0bc664
commit b6e6d918c0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70532
2 changed files with 14 additions and 4 deletions

View File

@ -1342,9 +1342,14 @@ int main(argc, argv)
if (ch == 'i') {
iface = optarg;
} else {
iface = "an0";
if (argc > 1 && *argv[1] != '-') {
iface = argv[1];
optind = 2;
} else {
iface = "an0";
optind = 1;
}
optreset = 1;
optind = 1;
}
opterr = 1;

View File

@ -703,9 +703,14 @@ int main(argc, argv)
if (ch == 'i') {
iface = optarg;
} else {
iface = "wi0";
if (argc > 1 && *argv[1] != '-') {
iface = argv[1];
optind = 2;
} else {
iface = "wi0";
optind = 1;
}
optreset = 1;
optind = 1;
}
opterr = 1;