You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.com> on 1997/06/28 21:55:19 UTC

cvs commit: apache/src CHANGES mod_auth.c

dgaudet     97/06/28 12:55:18

  Modified:    src       CHANGES mod_auth.c
  Log:
  Deal with extra : delimited fields.
  
  Reviewed by:	Dean, Brian
  Submitted by:	Marc
  
  Revision  Changes    Path
  1.299     +2 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.298
  retrieving revision 1.299
  diff -C3 -r1.298 -r1.299
  *** CHANGES	1997/06/28 19:53:02	1.298
  --- CHANGES	1997/06/28 19:55:16	1.299
  ***************
  *** 6,11 ****
  --- 6,13 ----
    
      *) Added NT support [Ben Laurie and Ambarish Malpani <am...@valicert.com>]
    
  +   *) mod_auth deals with extra ':' delimited fields.  [Marc Slemko]
  + 
    Changes with Apache 1.2.1
    
      *) SECURITY: Don't serve file system objects unless they are plain files,
  
  
  
  1.17      +1 -1      apache/src/mod_auth.c
  
  Index: mod_auth.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -C3 -r1.16 -r1.17
  *** mod_auth.c	1997/06/17 00:09:13	1.16
  --- mod_auth.c	1997/06/28 19:55:17	1.17
  ***************
  *** 130,136 ****
    
            if(!strcmp(user,w)) {
    	    pfclose(r->pool, f);
  !             return pstrdup (r->pool, rpw);
    	}
        }
        pfclose(r->pool, f);
  --- 130,136 ----
    
            if(!strcmp(user,w)) {
    	    pfclose(r->pool, f);
  !             return getword(r->pool, &rpw, ':');
    	}
        }
        pfclose(r->pool, f);