dougm       01/12/18 20:11:31

  Modified:    perl-framework/Apache-Test/lib/Apache TestConfig.pm
                        TestSSLCA.pm
  Log:
  untabify win32 edits
  
  Revision  Changes    Path
  1.112     +5 -5      
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.111
  retrieving revision 1.112
  diff -u -r1.111 -r1.112
  --- TestConfig.pm     2001/12/19 04:08:54     1.111
  +++ TestConfig.pm     2001/12/19 04:11:31     1.112
  @@ -1160,11 +1160,11 @@
   #duplicating small bits of Apache::Build so we dont require it
   sub which {
       foreach (map { catfile $_, $_[0] } File::Spec->path) {
  -     return $_ if -x;
  -     if (WIN32) {
  -         my $exe = "$_.exe";
  -         return $exe if -x $exe;
  -     }
  +        return $_ if -x;
  +        if (WIN32) {
  +            my $exe = "$_.exe";
  +            return $exe if -x $exe;
  +        }
       }
   }
   
  
  
  
  1.4       +5 -5      
httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm
  
  Index: TestSSLCA.pm
  ===================================================================
  RCS file: 
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestSSLCA.pm,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestSSLCA.pm      2001/12/19 04:08:54     1.3
  +++ TestSSLCA.pm      2001/12/19 04:11:31     1.4
  @@ -259,11 +259,11 @@
       openssl ca => "-revoke certs/$name.crt", @args;
   
       unless (-e SSLCA_DB) {
  -     #hack require for win32
  -     my $new = join '.', SSLCA_DB, 'new';
  -     if (-e $new) {
  -         cp $new, SSLCA_DB;
  -     }
  +        #hack required for win32
  +        my $new = join '.', SSLCA_DB, 'new';
  +        if (-e $new) {
  +            cp $new, SSLCA_DB;
  +        }
       }
   
       #generates crl from the index.txt database
  
  
  

Reply via email to