diff options
author | 2002-09-08 17:14:57 +0000 | |
---|---|---|
committer | 2002-09-08 17:14:57 +0000 | |
commit | b83beb85a09a73575a2994386541ae216a620efb (patch) | |
tree | 2d77e9c217899d5ee4f946fd1f69f46a54be21ba | |
parent | ansi pedantic. sync w/kame (diff) | |
download | wireguard-openbsd-b83beb85a09a73575a2994386541ae216a620efb.tar.xz wireguard-openbsd-b83beb85a09a73575a2994386541ae216a620efb.zip |
missing include for evp.h; ok henning@
-rw-r--r-- | usr.sbin/httpd/src/main/http_main.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/main/http_main.c b/usr.sbin/httpd/src/main/http_main.c index 9dc60c7ab87..ff9e1a7364e 100644 --- a/usr.sbin/httpd/src/main/http_main.c +++ b/usr.sbin/httpd/src/main/http_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: http_main.c,v 1.23 2002/09/04 12:28:42 henning Exp $ */ +/* $OpenBSD: http_main.c,v 1.24 2002/09/08 17:14:57 markus Exp $ */ /* ==================================================================== * The Apache Software License, Version 1.1 @@ -205,6 +205,10 @@ caddr_t create_shared_heap(const char *, size_t); caddr_t get_shared_heap(const char *); #endif +#ifdef MOD_SSL +#include <openssl/evp.h> +#endif + DEF_Explain /* Defining GPROF when compiling uses the moncontrol() function to |