diff options
author | Thierry Vignaud <tv@mageia.org> | 2011-11-18 12:58:18 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2011-11-18 12:58:18 +0000 |
commit | 29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7 (patch) | |
tree | f248e42b97ff78dcbee96ed8a6d1ed8f3bcbc6d4 /lib/network/connection | |
parent | b8276cb27087b6ce689b9ed1cb54c628ee663ef3 (diff) | |
download | drakx-net-29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7.tar drakx-net-29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7.tar.gz drakx-net-29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7.tar.bz2 drakx-net-29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7.tar.xz drakx-net-29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7.zip |
update main catalog (#3371)
Diffstat (limited to 'lib/network/connection')
-rw-r--r-- | lib/network/connection/cable.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/cellular.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/cellular_bluetooth.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/cellular_card.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/dvb.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/ethernet.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/isdn.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/isdn/consts.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/pots.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/ppp.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/wireless.pm | 2 | ||||
-rw-r--r-- | lib/network/connection/xdsl.pm | 2 |
12 files changed, 12 insertions, 12 deletions
diff --git a/lib/network/connection/cable.pm b/lib/network/connection/cable.pm index a81ae06..5df3320 100644 --- a/lib/network/connection/cable.pm +++ b/lib/network/connection/cable.pm @@ -2,7 +2,7 @@ package network::connection::cable; use base qw(network::connection::ethernet); -use strict; + use common; use modules; use detect_devices; diff --git a/lib/network/connection/cellular.pm b/lib/network/connection/cellular.pm index 5bb2259..c10d52b 100644 --- a/lib/network/connection/cellular.pm +++ b/lib/network/connection/cellular.pm @@ -2,7 +2,7 @@ package network::connection::cellular; use base qw(network::connection::ppp); -use strict; + use common; my $cellular_d = "/etc/sysconfig/network-scripts/cellular.d"; diff --git a/lib/network/connection/cellular_bluetooth.pm b/lib/network/connection/cellular_bluetooth.pm index 5c99b63..21ea07d 100644 --- a/lib/network/connection/cellular_bluetooth.pm +++ b/lib/network/connection/cellular_bluetooth.pm @@ -2,7 +2,7 @@ package network::connection::cellular_bluetooth; use base qw(network::connection::cellular); -use strict; + use common; my $rfcomm_dev_prefix = "/dev/rfcomm"; diff --git a/lib/network/connection/cellular_card.pm b/lib/network/connection/cellular_card.pm index 0fc3fbf..951b84e 100644 --- a/lib/network/connection/cellular_card.pm +++ b/lib/network/connection/cellular_card.pm @@ -2,7 +2,7 @@ package network::connection::cellular_card; use base qw(network::connection::cellular); -use strict; + use common; my $wrong_pin_error = N_("Wrong PIN number format: it should be 4 digits."); diff --git a/lib/network/connection/dvb.pm b/lib/network/connection/dvb.pm index c5f8ff6..618bfba 100644 --- a/lib/network/connection/dvb.pm +++ b/lib/network/connection/dvb.pm @@ -2,7 +2,7 @@ package network::connection::dvb; use base qw(network::connection::ethernet); -use strict; + use common; use modules; diff --git a/lib/network/connection/ethernet.pm b/lib/network/connection/ethernet.pm index 7b76396..aeb70f9 100644 --- a/lib/network/connection/ethernet.pm +++ b/lib/network/connection/ethernet.pm @@ -2,7 +2,7 @@ package network::connection::ethernet; # $Id: ethernet.pm 147431 2007-03-21 17:0 use base qw(network::connection); -use strict; + use common; use network::tools; diff --git a/lib/network/connection/isdn.pm b/lib/network/connection/isdn.pm index 1b8debc..9cdd363 100644 --- a/lib/network/connection/isdn.pm +++ b/lib/network/connection/isdn.pm @@ -2,7 +2,7 @@ package network::connection::isdn; use base qw(network::connection); -use strict; + use common; sub get_type_name { N("ISDN") } diff --git a/lib/network/connection/isdn/consts.pm b/lib/network/connection/isdn/consts.pm index a53ddbe..8a989cb 100644 --- a/lib/network/connection/isdn/consts.pm +++ b/lib/network/connection/isdn/consts.pm @@ -1,5 +1,5 @@ package network::connection::isdn::consts; # $Id: consts.pm 54070 2006-08-07 17:34:38Z blino $ -use vars qw(@ISA @EXPORT); + @ISA = qw(Exporter); @EXPORT = qw(@isdndata @isdn_capi); diff --git a/lib/network/connection/pots.pm b/lib/network/connection/pots.pm index 22299f6..f5d19fb 100644 --- a/lib/network/connection/pots.pm +++ b/lib/network/connection/pots.pm @@ -2,7 +2,7 @@ package network::connection::pots; use base qw(network::connection::ppp); -use strict; + use common; sub get_type_name { diff --git a/lib/network/connection/ppp.pm b/lib/network/connection/ppp.pm index 37fabb3..c83b7fa 100644 --- a/lib/network/connection/ppp.pm +++ b/lib/network/connection/ppp.pm @@ -1,6 +1,6 @@ package network::connection::ppp; -use strict; + use common; use base qw(network::connection); diff --git a/lib/network/connection/wireless.pm b/lib/network/connection/wireless.pm index 4f86f17..83b62c3 100644 --- a/lib/network/connection/wireless.pm +++ b/lib/network/connection/wireless.pm @@ -2,7 +2,7 @@ package network::connection::wireless; use base qw(network::connection::ethernet); -use strict; + use common; use log; use network::network; diff --git a/lib/network/connection/xdsl.pm b/lib/network/connection/xdsl.pm index e55dd24..03b1080 100644 --- a/lib/network/connection/xdsl.pm +++ b/lib/network/connection/xdsl.pm @@ -2,7 +2,7 @@ package network::connection::xdsl; use base qw(network::connection::ppp); -use strict; + use common; sub get_type_name() { N("DSL") } |