diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-11-08 23:43:56 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-11-08 23:43:56 +0000 |
commit | 17f6c2aa19849419ee8480e6da7eaf13949cde5d (patch) | |
tree | 711d45aac4ac90eba46ab71e5241fb7dae344786 | |
parent | add a new note about the home of DISPLAYMANAGER #154003 (diff) | |
download | baselayout-17f6c2aa19849419ee8480e6da7eaf13949cde5d.tar.gz baselayout-17f6c2aa19849419ee8480e6da7eaf13949cde5d.tar.bz2 baselayout-17f6c2aa19849419ee8480e6da7eaf13949cde5d.zip |
tuntap interface is now destroyed correctly, #154509 thanks to Andrew Lambe
svn path=/branches/baselayout-1_12/; revision=2372
-rw-r--r-- | net-scripts/net/tuntap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-scripts/net/tuntap.sh b/net-scripts/net/tuntap.sh index f5b316cd..8759ea41 100644 --- a/net-scripts/net/tuntap.sh +++ b/net-scripts/net/tuntap.sh @@ -91,7 +91,7 @@ tuntap_stop() { --dev-type "$(get_options tuntap)" \ --dev "${iface}" > /dev/null else - tunctl -d "${fiace}" >/dev/null + tunctl -d "${iface}" >/dev/null fi eend $? } |