]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
... oops missed a reviewer checkin condition.
authormatty%chariot.net.au <>
Sat, 5 Oct 2002 22:08:50 +0000 (22:08 +0000)
committermatty%chariot.net.au <>
Sat, 5 Oct 2002 22:08:50 +0000 (22:08 +0000)
sanitycheck.cgi

index e7da73851b8c3c0da9d727fe41d2c3cd728f05c6..c4ad20f0e550d2c77eb60d36a39974a195076a31 100755 (executable)
@@ -478,7 +478,7 @@ my $lastb = 0;
 my @list;
 while (1) {
     my ($b, $k) = FetchSQLData();
-    if (!defined $b || $b ne $lastb) {
+    if (!defined $b || $b != $lastb) {
         if (@list) {
             $realk{$lastb} = join(', ', @list);
         }