You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Ben Laurie <be...@hyperreal.com> on 1996/10/18 21:23:17 UTC

cvs commit: apache/src http_config.h

ben         96/10/18 12:23:16

  Modified:    src       http_config.h
  Log:
  Correct a prototype.
  
  Revision  Changes    Path
  1.16      +2 -2      apache/src/http_config.h
  
  Index: http_config.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_config.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -C3 -r1.15 -r1.16
  *** http_config.h	1996/10/09 15:23:08	1.15
  --- http_config.h	1996/10/18 19:23:15	1.16
  ***************
  *** 50,56 ****
     *
     */
    
  ! /* $Id: http_config.h,v 1.15 1996/10/09 15:23:08 mjc Exp $ */
    
    /*
     * The central data structures around here...
  --- 50,56 ----
     *
     */
    
  ! /* $Id: http_config.h,v 1.16 1996/10/18 19:23:15 ben Exp $ */
    
    /*
     * The central data structures around here...
  ***************
  *** 156,162 ****
    
    typedef struct {
        char *content_type;
  !     int (*handler) ();
    } handler_rec;
    
    /*
  --- 156,162 ----
    
    typedef struct {
        char *content_type;
  !     int (*handler) (request_rec *);
    } handler_rec;
    
    /*