diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-27 02:32:08 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-12-27 02:32:08 +0000 |
commit | cb62f30ad45f115e9fb78bd1ceb766337aa08dd2 (patch) | |
tree | 2f2101138674737688a3b4fec945e9bb73ca9d6a /url.c | |
parent | [w3m-dev 02753] (diff) | |
download | w3m-cb62f30ad45f115e9fb78bd1ceb766337aa08dd2.tar.gz w3m-cb62f30ad45f115e9fb78bd1ceb766337aa08dd2.zip |
fix #undef USE_SSL_VERIFY compile error
Diffstat (limited to '')
-rw-r--r-- | url.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: url.c,v 1.26 2001/12/27 02:28:17 ukai Exp $ */ +/* $Id: url.c,v 1.27 2001/12/27 02:32:08 ukai Exp $ */ #include "fm.h" #include <sys/types.h> #include <sys/socket.h> @@ -280,9 +280,9 @@ openSSLHandle(int sock, char *hostname) Str amsg = NULL; char *ans; static char *old_ssl_forbid_method = NULL; + static Str accept_this_site = NULL; #ifdef USE_SSL_VERIFY static int old_ssl_verify_server = -1; - static Str accept_this_site = NULL; #endif if (!old_ssl_forbid_method || !ssl_forbid_method || |