| 133 |
|
|
| 134 |
# by now, we also have the version that's affected by the security problem. |
# by now, we also have the version that's affected by the security problem. |
| 135 |
# This is stored in $version |
# This is stored in $version |
| 136 |
next if $version eq 'not-affected'; |
next if $version eq '<not-affected>'; |
| 137 |
|
|
| 138 |
my @notes=split(/\s*;\s+/, $notes); |
my @notes=split(/\s*;\s+/, $notes); |
| 139 |
|
|
| 179 |
next; |
next; |
| 180 |
} |
} |
| 181 |
|
|
| 182 |
if (grep { $_ eq 'unfixed' || $_ eq 'pending' } @notes) { |
if ($version eq '<unfixed>' || grep { $_ eq 'pending' } @notes) { |
| 183 |
record($package, '('.join("; ", @notes).')', $id, $urgency); |
record($package, '('.join("; ", "unfixed", @notes).')', $id, $urgency); |
| 184 |
$unfixed++; |
$unfixed++; |
| 185 |
# It's not been fixed! |
# It's not been fixed! |
| 186 |
} |
} |