You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@hyperreal.org on 1999/01/08 22:09:11 UTC

cvs commit: modperl/src/modules/perl Connection.xs

dougm       99/01/08 13:09:11

  Modified:    .        Changes
               src/modules/perl Connection.xs
  Log:
  $r->connection->aborted now returns the flag as-is (no c->fd test)
  
  Revision  Changes    Path
  1.238     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.237
  retrieving revision 1.238
  diff -u -r1.237 -r1.238
  --- Changes	1999/01/08 04:01:38	1.237
  +++ Changes	1999/01/08 21:09:09	1.238
  @@ -8,6 +8,8 @@
   
   =item 1.17_01-dev
   
  +$r->connection->aborted now returns the flag as-is (no c->fd test)
  +
   fix bug in Apache::ModuleConfig->get($r) when $r isa subclass of Apache
   
   =item 1.17 - January 6, 1999
  
  
  
  1.4       +1 -1      modperl/src/modules/perl/Connection.xs
  
  Index: Connection.xs
  ===================================================================
  RCS file: /home/cvs/modperl/src/modules/perl/Connection.xs,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Connection.xs	1998/11/24 20:43:31	1.3
  +++ Connection.xs	1999/01/08 21:09:10	1.4
  @@ -37,7 +37,7 @@
       Apache::Connection	conn
   
       CODE:
  -    RETVAL = conn->aborted || (conn->client && (conn->client->fd < 0));
  +    RETVAL = conn->aborted;
   
       OUTPUT:
       RETVAL