summaryrefslogtreecommitdiff
path: root/net.Linux/ifconfig.sh
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-04-16 12:56:43 +0000
committerRoy Marples <roy@marples.name>2007-04-16 12:56:43 +0000
commit757b8bcc968fa285e3d78435e30b6c47abc048dc (patch)
treed1eee1629f862e3cc784bb9fb28d5c3a5cc62110 /net.Linux/ifconfig.sh
parent74527291b51ac81a87c579aeb655fdc91faa40ab (diff)
downloadopenrc-757b8bcc968fa285e3d78435e30b6c47abc048dc.tar.gz
openrc-757b8bcc968fa285e3d78435e30b6c47abc048dc.tar.bz2
openrc-757b8bcc968fa285e3d78435e30b6c47abc048dc.tar.xz
Don't search for a space after interface names in /proc/net, #174792 thanks to Mike Auty.
Diffstat (limited to 'net.Linux/ifconfig.sh')
-rw-r--r--net.Linux/ifconfig.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/net.Linux/ifconfig.sh b/net.Linux/ifconfig.sh
index 0b0af97..68590bb 100644
--- a/net.Linux/ifconfig.sh
+++ b/net.Linux/ifconfig.sh
@@ -15,7 +15,7 @@ _down() {
}
_exists() {
- grep -Eq "^[[:space:]]*${IFACE}:[[:space:]]*" /proc/net/dev
+ grep -Eq "^[[:space:]]*${IFACE}:" /proc/net/dev
}
_ifindex() {
@@ -24,7 +24,7 @@ _ifindex() {
i=$((${i} + 1))
[ ${i} -lt 1 ] && continue
case "${line}" in
- "${IFACE}: "*) echo "${i}"; return 0;;
+ "${IFACE}:"*) echo "${i}"; return 0;;
esac
done < /proc/net/dev
return 1
@@ -35,7 +35,7 @@ _is_wireless() {
[ -d /sys/class/net/"${IFACE}"/wireless ] && return 0
[ ! -e /proc/net/wireless ] && return 1
- grep -Eq "^[[:space:]]*${IFACE}:[[:space:]]+" /proc/net/wireless
+ grep -Eq "^[[:space:]]*${IFACE}:" /proc/net/wireless
}
_get_mac_address() {