Thanks for the report.

This happens because we try to print a numeric IP address:

warn "Failed to resolve $$addr, using $srcdir/certs/wgethosts\n";

But then this is printed only if 'localhost' can't be resolved to
127.0.0.1. What is it in your case ?


Could you apply this patch and see what that test prints out ?

diff --git a/tests/Test-https-pfs.px b/tests/Test-https-pfs.px
index 627bd678..d28eec69 100755
--- a/tests/Test-https-pfs.px
+++ b/tests/Test-https-pfs.px
@@ -47,7 +47,7 @@ unless ($addr)
 }
 unless (inet_ntoa($addr) =~ "127.0.0.1")
 {
-    warn "Failed to resolve $$addr, using $srcdir/certs/wgethosts\n";
+    warn "Unexpected IP for localhost: ".inet_ntoa($addr)."\n";
     exit 77;
 }



With Best Regards, Tim



On 01/25/2018 07:47 AM, David McInnis wrote:
> For ArchLinux.
> 
> -Dave

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to