You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Rodent of Unusual Size <co...@hyperreal.com> on 1997/06/16 14:47:55 UTC

cvs commit: apache/src mod_rewrite.h

coar        97/06/16 05:47:54

  Modified:    src       mod_rewrite.h
  Log:
  	Change mod_rewrite.h to match the function types in mod_rewrite.c,
  	which were altered for the NT port.  (Change is from void to int.)
  
  Submitted by:	Brian Behlendorf, Ken Coar
  
  Revision  Changes    Path
  1.24      +2 -2      apache/src/mod_rewrite.h
  
  Index: mod_rewrite.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_rewrite.h,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -C3 -r1.23 -r1.24
  *** mod_rewrite.h	1997/06/15 19:22:32	1.23
  --- mod_rewrite.h	1997/06/16 12:47:53	1.24
  ***************
  *** 349,361 ****
    
        /* rewriting logfile support */
    static void  open_rewritelog(server_rec *s, pool *p);
  ! static void  rewritelog_child(void *cmd);
    static void  rewritelog(request_rec *r, int level, const char *text, ...);
    static char *current_logtime(request_rec *r);
    
        /* program map support */
    static void  run_rewritemap_programs(server_rec *s, pool *p);
  ! static void  rewritemap_program_child(void *cmd);
    
        /* env variable support */
    static void  expand_variables_inbuffer(request_rec *r, char *buf, int buf_len);
  --- 349,361 ----
    
        /* rewriting logfile support */
    static void  open_rewritelog(server_rec *s, pool *p);
  ! static int   rewritelog_child(void *cmd);
    static void  rewritelog(request_rec *r, int level, const char *text, ...);
    static char *current_logtime(request_rec *r);
    
        /* program map support */
    static void  run_rewritemap_programs(server_rec *s, pool *p);
  ! static int   rewritemap_program_child(void *cmd);
    
        /* env variable support */
    static void  expand_variables_inbuffer(request_rec *r, char *buf, int buf_len);