diff options
| author | mlelstv <mlelstv@NetBSD.org> | 2008-05-10 19:25:20 +0000 |
|---|---|---|
| committer | mlelstv <mlelstv@NetBSD.org> | 2008-05-10 19:25:20 +0000 |
| commit | 2e45fdea284dcf07c19cf81c169824ae6e28ccd6 (patch) | |
| tree | 50344f22d9e1fd1b7aea652ddc325a182ce4228b /libexec/httpd | |
| parent | 612cebe3007cce960bcc7d4b480b7e69d5e775fb (diff) | |
new openssl returns const method objects.
Diffstat (limited to 'libexec/httpd')
| -rw-r--r-- | libexec/httpd/ssl-bozo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/httpd/ssl-bozo.c b/libexec/httpd/ssl-bozo.c index 32dac59e0a7..d33eeb23864 100644 --- a/libexec/httpd/ssl-bozo.c +++ b/libexec/httpd/ssl-bozo.c @@ -1,4 +1,4 @@ -/* $NetBSD: ssl-bozo.c,v 1.3 2008/03/03 22:15:09 mrg Exp $ */ +/* $NetBSD: ssl-bozo.c,v 1.4 2008/05/10 19:25:20 mlelstv Exp $ */ /* $eterna: ssl-bozo.c,v 1.7 2008/03/03 03:36:12 mrg Exp $ */ @@ -44,7 +44,7 @@ #include "bozohttpd.h" static SSL_CTX *ssl_context; -static SSL_METHOD *ssl_method; +static const SSL_METHOD *ssl_method; static SSL *bozossl; static char *certificate_file; static char *privatekey_file; |
