dgaudet     97/06/29 10:53:05

  Modified:    src       http_core.c http_core.h
  Log:
  allow_options_t should be unsigned char, and should be used by set_options.
  
  Revision  Changes    Path
  1.89      +1 -1      apache/src/http_core.c
  
  Index: http_core.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_core.c,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -C3 -r1.88 -r1.89
  *** http_core.c       1997/06/29 17:29:17     1.88
  --- http_core.c       1997/06/29 17:53:03     1.89
  ***************
  *** 506,512 ****
    
    const char *set_options (cmd_parms *cmd, core_dir_config *d, const char *l)
    {
  !     unsigned char opt;
        int first = 1;
        char action;
    
  --- 506,512 ----
    
    const char *set_options (cmd_parms *cmd, core_dir_config *d, const char *l)
    {
  !     allow_options_t opt;
        int first = 1;
        char action;
    
  
  
  
  1.21      +2 -2      apache/src/http_core.h
  
  Index: http_core.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_core.h,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -C3 -r1.20 -r1.21
  *** http_core.h       1997/02/17 10:46:07     1.20
  --- http_core.h       1997/06/29 17:53:04     1.21
  ***************
  *** 124,131 ****
    
    /* Per-directory configuration */
    
  ! typedef char allow_options_t;
  ! typedef char overrides_t;
    
    typedef struct {
        char *d;
  --- 124,131 ----
    
    /* Per-directory configuration */
    
  ! typedef unsigned char allow_options_t;
  ! typedef unsigned char overrides_t;
    
    typedef struct {
        char *d;
  
  
  

Reply via email to