marc        99/01/31 14:01:36

  Modified:    src/modules/standard mod_auth.c mod_auth_db.c mod_auth_dbm.c
  Log:
  We have found the prototype for crypt.  Since people actually once in
  a while are "nice enough" to write in telling me that they know where
  the prototype is on their system based on that comment, plus we
  don't do the casting associated with the comment any more, it can
  go away.
  
  Revision  Changes    Path
  1.44      +0 -1      apache-1.3/src/modules/standard/mod_auth.c
  
  Index: mod_auth.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth.c,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- mod_auth.c        1999/01/25 22:55:38     1.43
  +++ mod_auth.c        1999/01/31 22:01:34     1.44
  @@ -220,7 +220,6 @@
        ap_note_basic_auth_failure(r);
        return AUTH_REQUIRED;
       }
  -    /* anyone know where the prototype for crypt is? */
       if (real_pw[0] == '$' && real_pw[1] == '1') {
           const char *salt = real_pw + 3;
           salt = ap_getword(r->pool, &salt, '$');
  
  
  
  1.39      +0 -1      apache-1.3/src/modules/standard/mod_auth_db.c
  
  Index: mod_auth_db.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth_db.c,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- mod_auth_db.c     1999/01/26 00:15:21     1.38
  +++ mod_auth_db.c     1999/01/31 22:01:34     1.39
  @@ -251,7 +251,6 @@
       if (colon_pw) {
        *colon_pw = '\0';
       }
  -    /* anyone know where the prototype for crypt is? */
       if (real_pw[0] == '$' && real_pw[1] == '1') {
           char *salt = real_pw + 3;
           salt = ap_getword(r->pool, &salt, '$');
  
  
  
  1.44      +0 -1      apache-1.3/src/modules/standard/mod_auth_dbm.c
  
  Index: mod_auth_dbm.c
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/modules/standard/mod_auth_dbm.c,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- mod_auth_dbm.c    1999/01/26 00:15:21     1.43
  +++ mod_auth_dbm.c    1999/01/31 22:01:34     1.44
  @@ -232,7 +232,6 @@
       colon_pw = strchr(real_pw, ':');
       if (colon_pw)
        *colon_pw = '\0';
  -    /* anyone know where the prototype for crypt is? */
       if (real_pw[0] == '$' && real_pw[1] == '1') {
           char *salt = real_pw + 3;
           salt = ap_getword(r->pool, &salt, '$');
  
  
  

Reply via email to