git: a849536ce25d - main - devel/bugzilla52: fix typo in patch.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 27 Jun 2026 12:18:44 UTC
The branch main has been updated by linimon:
URL: https://cgit.FreeBSD.org/ports/commit/?id=a849536ce25d19cfbd1da1f0b1a7071966dd3272
commit a849536ce25d19cfbd1da1f0b1a7071966dd3272
Author: Mark Linimon <linimon@FreeBSD.org>
AuthorDate: 2026-06-27 12:18:16 +0000
Commit: Mark Linimon <linimon@FreeBSD.org>
CommitDate: 2026-06-27 12:18:16 +0000
devel/bugzilla52: fix typo in patch.
---
devel/bugzilla52/files/patch-Bugzilla_Bug.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/devel/bugzilla52/files/patch-Bugzilla_Bug.pm b/devel/bugzilla52/files/patch-Bugzilla_Bug.pm
index c4cfdde5b87b..b1d5a8f1a3d5 100644
--- a/devel/bugzilla52/files/patch-Bugzilla_Bug.pm
+++ b/devel/bugzilla52/files/patch-Bugzilla_Bug.pm
@@ -5,7 +5,7 @@
my $limit = $params->{limit} || MAX_POSSIBLE_DUPLICATES;
$limit = MAX_POSSIBLE_DUPLICATES if $limit > MAX_POSSIBLE_DUPLICATES;
- $products = [$products] if !ref($products) eq 'ARRAY';
-+ $products = [$products] if ref($products) neq 'ARRAY';
++ $products = [$products] if ref($products) ne 'ARRAY';
my $orig_limit = $limit;
detaint_natural($limit)