fielding 96/08/13 21:43:22
Modified: src mod_auth.c
Log:
Fixed warning on systems that HAVE_CRYPT_H.
Submitted by: Roy Fielding
Revision Changes Path
1.4 +3 -0 apache/src/mod_auth.c
Index: mod_auth.c
===================================================================
RCS file: /export/home/cvs/apache/src/mod_auth.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C3 -r1.3 -r1.4
*** mod_auth.c 1996/06/07 20:11:28 1.3
--- mod_auth.c 1996/08/14 04:43:21 1.4
***************
*** 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;