dougm       02/01/06 10:20:57

  Modified:    perl-framework/Apache-Test/lib/Apache TestSmoke.pm
  Log:
  get rid of POSIX.pm bloat
  
  Revision  Changes    Path
  1.9       +1 -2      
httpd-test/perl-framework/Apache-Test/lib/Apache/TestSmoke.pm
  
  Index: TestSmoke.pm
  ===================================================================
  RCS file: 
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestSmoke.pm,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- TestSmoke.pm      6 Jan 2002 18:20:17 -0000       1.8
  +++ TestSmoke.pm      6 Jan 2002 18:20:57 -0000       1.9
  @@ -8,7 +8,6 @@
   
   use Getopt::Long qw(GetOptions);
   use File::Spec::Functions qw(catfile);
  -use POSIX ();
   use FindBin;
   
   #use constant DEBUG => 1;
  @@ -390,7 +389,7 @@
       my $pid = `cat $file`;
       chomp $pid;
       return unless $pid;
  -    kill POSIX::SIGINT(), $pid;
  +    kill SIGINT => $pid;
   }
   
   sub opt_help {
  
  
  

Reply via email to