Don't use 'parent' in util/dofile.pl

Because we're requiring Perl 5.10.0 and the 'parent' didn't appear
before Perl 5.10.1, we need to resort to the older parent module
declaration style, modifying @ISA.

Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
Richard Levitte
2016-02-21 22:43:29 +01:00
parent f8d9d6e48b
commit 180df315c7
5 changed files with 11 additions and 5 deletions

View File

@@ -55,7 +55,8 @@ use strict;
package TLSProxy::ClientHello;
use parent 'TLSProxy::Message';
use vars '@ISA';
push @ISA, 'TLSProxy::Message';
sub new
{