mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 00:32:10 -04:00
Silence perl complaint in ssl test
Perl's hex() function complains if its argument contains trailing white space (or in fact anything other than hex digits), so remove the offending text.
This commit is contained in:
parent
fadac33bb8
commit
d4596a20d0
1 changed files with 1 additions and 0 deletions
|
|
@ -504,6 +504,7 @@ if ($? == 0)
|
|||
if ($Config{ivsize} == 8)
|
||||
{
|
||||
$serialno =~ s/^serial=//;
|
||||
$serialno =~ s/\s+//g;
|
||||
$serialno = hex($serialno);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Reference in a new issue