summaryrefslogtreecommitdiff
path: root/source4/heimdal_build/asn1_deps.pl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-12-19 23:13:12 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:47:32 -0500
commitaca9da26c720d23421abbbeaf29ba8263cf9cef8 (patch)
treeab51870704a58c11712b67c8258b4ddfcabf11f1 /source4/heimdal_build/asn1_deps.pl
parenta167713c3cb5f9ea7325faa16c8d4431f23544f8 (diff)
downloadsamba-aca9da26c720d23421abbbeaf29ba8263cf9cef8.tar.gz
samba-aca9da26c720d23421abbbeaf29ba8263cf9cef8.tar.bz2
samba-aca9da26c720d23421abbbeaf29ba8263cf9cef8.zip
r12378: fix perl warnings
metze (This used to be commit 918e7b4043f6c92997e66d552f62bf1bef81fb81)
Diffstat (limited to 'source4/heimdal_build/asn1_deps.pl')
-rwxr-xr-xsource4/heimdal_build/asn1_deps.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl
index cc95fb2217..67e6d51f85 100755
--- a/source4/heimdal_build/asn1_deps.pl
+++ b/source4/heimdal_build/asn1_deps.pl
@@ -8,8 +8,10 @@ use File::Basename;
my $file = shift;
my $prefix = shift;
my $options = shift;
-my $x_file, @x_files;
-my $c_file, @c_files;
+my $x_file;
+my @x_files = ();
+my $c_file;
+my @c_files = ();
if (not defined ($prefix)) { $prefix = "asn1"; }
$dirname = dirname($file);