Skip Menu |

This queue is for tickets about the Ekahau CPAN distribution.

Report information
The Basics
Id: 87303
Status: new
Priority: 0/
Queue: Ekahau

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] wrong return precedence
returns binds stronger than and, so the expressions after and are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: Ekahau-0.001-returnor.patch
diff -bu ./Ekahau.pm~ ./Ekahau.pm --- ./Ekahau.pm~ 2005-06-10 15:32:18.000000000 -0500 +++ ./Ekahau.pm 2013-07-25 08:34:29.095163434 -0500 @@ -428,7 +428,7 @@ my $e1 = $self->start_location_track(@_); my $e2 = $self->start_area_track(@_); - return $e1 and $e2; + return ($e1 and $e2); } =head3 stop_track ( $device_id ) @@ -447,7 +447,7 @@ my $e1 = $self->stop_location_track(@_); my $e2 = $self->stop_area_track(@_); - return $e1 and $e2; + return ($e1 and $e2); }