'all' argument for list_net_interfaces() is now unused, remove it.

This commit is contained in:
pjd 2004-12-05 21:45:36 +00:00
parent 514977fc0b
commit cdb5b5cf1c

View File

@ -274,7 +274,6 @@ ifnet_rename()
# argument can be any of the following:
# nodhcp - all interfaces, excluding DHCP configured interfaces
# dhcp - list only DHCP configured interfaces
# all - all interfaces
# If no argument is specified all network interfaces are output.
# Note that the list will include cloned interfaces if applicable.
# Cloned interfaces must already exist to have a chance to appear
@ -343,9 +342,6 @@ list_net_interfaces()
dhcp)
echo $_dhcplist
;;
all)
echo $_nodhcplist $_dhcplist
;;
esac
return 0
}