From: Don Armstrong Date: Mon, 25 Feb 2008 21:56:05 +0000 (-0800) Subject: * Fix paramaters for get_versions and source/binary SOAP calls X-Git-Tag: release/2.6.0~494^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=28e396ad173a907b3199bf017c4e7fb407ed7c6b;p=debbugs.git * Fix paramaters for get_versions and source/binary SOAP calls --- diff --git a/Debbugs/SOAP.pm b/Debbugs/SOAP.pm index 1006ff8..ed66b18 100644 --- a/Debbugs/SOAP.pm +++ b/Debbugs/SOAP.pm @@ -274,8 +274,9 @@ versions for all architectures, with any duplicates removed. sub binary_to_source{ my $VERSION = __populate_version(pop); + my ($self,@params) = @_; - return [binarytosource(@_)]; + return [binarytosource(@params)]; } =head2 source_to_binary @@ -294,8 +295,9 @@ architecture is not returned. sub source_to_binary { my $VERSION = __populate_version(pop); + my ($self,@params) = @_; - return [source_to_binary(@_)]; + return [source_to_binary(@params)]; } =head2 get_versions @@ -338,8 +340,9 @@ This function correponds to L sub get_versions{ my $VERSION = __populate_version(pop); + my ($self,@params) = @_; - return scalar Debbugs::Packages::get_versions(@_); + return scalar Debbugs::Packages::get_versions(@params); } =head1 VERSION COMPATIBILITY