"defined(@array)" and "defined(%hash)" are now fatal errors
These have been deprecated since v5.6.1 and have raised deprecation
warnings since v5.16.
With hat: perl@
Sponsored by: Absolight
12 lines
401 B
Plaintext
12 lines
401 B
Plaintext
--- Samba/source/pidl/pidl.orig 2008-07-30 19:44:55 UTC
|
|
+++ Samba/source/pidl/pidl
|
|
@@ -580,7 +580,7 @@ sub process_file($)
|
|
require Parse::Pidl::IDL;
|
|
|
|
$pidl = Parse::Pidl::IDL::parse_file($idl_file, \@opt_incdirs);
|
|
- defined @$pidl || die "Failed to parse $idl_file";
|
|
+ @$pidl || die "Failed to parse $idl_file";
|
|
require Parse::Pidl::Typelist;
|
|
Parse::Pidl::Typelist::LoadIdl($pidl);
|
|
}
|