stas 02/01/20 18:11:12
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
- use 4 space char indentation in the autogenerated config files
Revision Changes Path
1.122 +3 -3
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -r1.121 -r1.122
--- TestConfig.pm 14 Jan 2002 06:44:10 -0000 1.121
+++ TestConfig.pm 21 Jan 2002 02:11:12 -0000 1.122
@@ -349,16 +349,16 @@
while (my($k,$v) = each %$hash) {
if (ref($v) eq 'ARRAY') {
for (@$v) {
- $args .= " $k $_\n";
+ $args .= " $k $_\n";
}
}
else {
- $args .= " $k $v\n";
+ $args .= " $k $v\n";
}
}
}
else {
- $args .= " $hash";
+ $args .= " $hash";
}
$args .= "</$directive>\n";
}