stas        2003/02/02 18:18:32

  Modified:    perl-framework/Apache-Test/lib/Apache TestConfigPerl.pm
  Log:
  separate the noautoconfig section with a newline from the next section
  
  Revision  Changes    Path
  1.65      +4 -1      
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigPerl.pm
  
  Index: TestConfigPerl.pm
  ===================================================================
  RCS file: 
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigPerl.pm,v
  retrieving revision 1.64
  retrieving revision 1.65
  diff -u -r1.64 -r1.65
  --- TestConfigPerl.pm 20 Jan 2003 07:54:38 -0000      1.64
  +++ TestConfigPerl.pm 3 Feb 2003 02:18:32 -0000       1.65
  @@ -439,7 +439,10 @@
   
           debug "configuring $module";
   
  -        unless ($directives->{noautoconfig}) {
  +        if ($directives->{noautoconfig}) {
  +            $self->postamble(""); # which adds "\n"
  +        }
  +        else {
               if (my $cv = $add_hook_config{$hook}) {
                   $self->$cv($module, [EMAIL PROTECTED]);
               }
  
  
  

Reply via email to