You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by "Roy T. Fielding" <fi...@liege.ICS.UCI.EDU> on 1996/07/02 04:11:15 UTC

patch to mod_auth.c

This is optional as far as I am concerned.
 
......Roy
===============================================
*** mod_auth.c.dist     Fri Jun  7 13:11:28 1996
--- mod_auth.c  Mon Jul  1 19:06:20 1996
***************
*** 65,70 ****
--- 65,73 ----
  #include "http_core.h"
  #include "http_log.h"
  #include "http_protocol.h"
+ #if defined(HAVE_CRYPT_H)
+ #include <crypt.h>
+ #endif
  
  typedef struct auth_config_struct {
      char *auth_pwfile;
===============================================