From 29c6b1e79ae9460ea0ca8815ed5916a8dd286bc7 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Fri, 18 Nov 2011 12:58:18 +0000 Subject: update main catalog (#3371) --- lib/network/connection/cable.pm | 2 +- lib/network/connection/cellular.pm | 2 +- lib/network/connection/cellular_bluetooth.pm | 2 +- lib/network/connection/cellular_card.pm | 2 +- lib/network/connection/dvb.pm | 2 +- lib/network/connection/ethernet.pm | 2 +- lib/network/connection/isdn.pm | 2 +- lib/network/connection/isdn/consts.pm | 2 +- lib/network/connection/pots.pm | 2 +- lib/network/connection/ppp.pm | 2 +- lib/network/connection/wireless.pm | 2 +- lib/network/connection/xdsl.pm | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) (limited to 'lib/network/connection') 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") } -- cgit v1.2.1