stas 2003/12/05 20:05:40
Modified: perl-framework/Apache-Test/lib/Apache TestConfigParse.pm
Log:
server_file_rel2abs resolves all kind of file, so don't refer to
'configuration file' in warnings.
Revision Changes Path
1.40 +2 -2
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigParse.pm
Index: TestConfigParse.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigParse.pm,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -u -r1.39 -r1.40
--- TestConfigParse.pm 2 Dec 2003 02:10:41 -0000 1.39
+++ TestConfigParse.pm 6 Dec 2003 04:05:40 -0000 1.40
@@ -91,10 +91,10 @@
}
if (-e $result) {
- debug "$file successfully resolved to existing file $result";
+ debug "$file successfully resolved to existing file $result";
}
else {
- warning "configuration file $result does not exist";
+ warning "file $result does not exist";
# old behavior was to return the resolved but non-existent
# file. preserve that behavior and return $result anyway.