summaryrefslogtreecommitdiff
path: root/lib/Net/servent.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Net/servent.pm')
-rw-r--r--lib/Net/servent.pm10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/Net/servent.pm b/lib/Net/servent.pm
index 8c0fc13890..fb85dd04bf 100644
--- a/lib/Net/servent.pm
+++ b/lib/Net/servent.pm
@@ -3,15 +3,17 @@ use strict;
BEGIN {
use Exporter ();
- use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
- @ISA = qw(Exporter);
+ use vars qw(@EXPORT @EXPORT_OK %EXPORT_TAGS);
@EXPORT = qw(getservbyname getservbyport getservent getserv);
@EXPORT_OK = qw( $s_name @s_aliases $s_port $s_proto );
%EXPORT_TAGS = ( FIELDS => [ @EXPORT_OK, @EXPORT ] );
}
use vars @EXPORT_OK;
-use Class::Template qw(struct);
+# Class::Struct forbids use of @ISA
+sub import { goto &Exporter::import }
+
+use Class::Struct qw(struct);
struct 'Net::servent' => [
name => '$',
aliases => '@',
@@ -101,7 +103,7 @@ via the C<CORE::> pseudo-package.
=head1 NOTE
-While this class is currently implemented using the Class::Template
+While this class is currently implemented using the Class::Struct
module to build a struct-like class, you shouldn't rely upon this.
=head1 AUTHOR