On Tue, 16 Oct 2001, William A. Rowe, Jr. wrote:

>     join ':', $$resolve, $self->port($module);

that's weird because there are checks to make sure both $$resolve and
$module are initialized.  seems to be what is killing all of the tests.
wonder if this double check helps at all?

--- Apache-Test/lib/Apache/TestConfig.pm        2001/10/17 01:30:40 1.74
+++ Apache-Test/lib/Apache/TestConfig.pm        2001/10/17 02:41:38
@@ -509,7 +509,7 @@
         }
     }
 
-    join ':', $$resolve, $self->port($module);
+    join ':', $$resolve || 'localhost', $self->port($module || '');
 }
 
 #look for mod_foo.so


Reply via email to