When we don't have an address return 1, #176577.

This commit is contained in:
Roy Marples
2007-05-08 16:52:26 +00:00
parent ea28d7e78d
commit 0888f74f47
3 changed files with 8 additions and 1 deletions

View File

@@ -51,9 +51,10 @@ _is_wireless() {
_get_inet_address() {
set -- $(LC_ALL=C ifconfig "${IFACE}" |
sed -n -e 's/^[[:space:]]*inet \([^ ]*\) netmask 0x\(..\)\(..\)\(..\)\(..\).*/\1 0x\2.0x\3.0x\4/p')
[ -z "$1" ] && return 1
echo -n "$1"
shift
echo "/$(_netmask2cidr "$1")"
}