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/05/18 23:24:16 UTC

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

dougm       99/05/18 14:24:16

  Modified:    .        Changes ToDo
               src/modules/perl Apache.xs
  Log:
  use ap_bfileno() instead of r->connnection->client->fd directly
  
  Revision  Changes    Path
  1.291     +3 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /export/home/cvs/modperl/Changes,v
  retrieving revision 1.290
  retrieving revision 1.291
  diff -u -r1.290 -r1.291
  --- Changes	1999/05/18 02:26:25	1.290
  +++ Changes	1999/05/18 21:24:12	1.291
  @@ -8,6 +8,9 @@
   
   =item 1.19_01-dev
   
  +use ap_bfileno() instead of r->connnection->client->fd directly
  +[Paul J. Reder <re...@raleigh.ibm.com>]
  +
   fix Table.xs:table_modify() under win32
   [Trung Tran-Duc <tr...@prague.ixos.cz>]
   
  
  
  
  1.179     +2 -0      modperl/ToDo
  
  Index: ToDo
  ===================================================================
  RCS file: /export/home/cvs/modperl/ToDo,v
  retrieving revision 1.178
  retrieving revision 1.179
  diff -u -r1.178 -r1.179
  --- ToDo	1999/05/18 02:26:26	1.178
  +++ ToDo	1999/05/18 21:24:13	1.179
  @@ -3,6 +3,8 @@
                    (well, close to it anyhow)
   ---------------------------------------------------------------------------
   
  +- ActivePerl?
  +
   - ldopts() spits out ccdlflags when linker is ld
   
   - Paul J. Reder's aix/dso port
  
  
  
  1.76      +1 -1      modperl/src/modules/perl/Apache.xs
  
  Index: Apache.xs
  ===================================================================
  RCS file: /export/home/cvs/modperl/src/modules/perl/Apache.xs,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- Apache.xs	1999/04/19 18:52:00	1.75
  +++ Apache.xs	1999/05/18 21:24:15	1.76
  @@ -357,7 +357,7 @@
       fprintf(stderr,
   #endif
   		 "mod_perl: rwrite returned -1 (fd=%d, B_EOUT=%d)\n",
  -		 r->connection->client->fd, 
  +		 ap_bfileno(r->connection->client, B_WR), 
   		 r->connection->client->flags & B_EOUT);
   }