diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-03-26 12:03:34 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-03-26 12:03:34 +0000 |
commit | dedfe7c9abf18dce6329f552f00e78a22b404672 (patch) | |
tree | 7c9c963d36cce61c30c44f0276d34ebb4b05c2a7 | |
parent | 6fbd42332d28fe25385171969c7894df2fc8f1fd (diff) | |
download | drakx-net-dedfe7c9abf18dce6329f552f00e78a22b404672.tar drakx-net-dedfe7c9abf18dce6329f552f00e78a22b404672.tar.gz drakx-net-dedfe7c9abf18dce6329f552f00e78a22b404672.tar.bz2 drakx-net-dedfe7c9abf18dce6329f552f00e78a22b404672.tar.xz drakx-net-dedfe7c9abf18dce6329f552f00e78a22b404672.zip |
declare gw_address
-rw-r--r-- | lib/network/tools.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/network/tools.pm b/lib/network/tools.pm index b00bdb0..efa38f9 100644 --- a/lib/network/tools.pm +++ b/lib/network/tools.pm @@ -200,7 +200,7 @@ sub get_default_connection { } sub has_network_connection() { - (undef, undef, $gw_address) = get_default_connection({}); + (undef, undef, my $gw_address) = get_default_connection({}); to_bool($gw_address); } |