From fc3ecf82c3d0f8037e9130655128564de5d3c158 Mon Sep 17 00:00:00 2001 From: snowdrop Date: Wed, 11 Jan 2006 10:54:43 +0000 Subject: intergrating ssl. Removing global variables SSL* like SSLctx and HSOCKET_SSL_* definition. Instead we are using HSOCKET_ERROR_SSL* definitions. introduced hsocket_init_ssl() --- nanohttp/nanohttp-ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nanohttp/nanohttp-ssl.c') diff --git a/nanohttp/nanohttp-ssl.c b/nanohttp/nanohttp-ssl.c index 798d623..254b718 100644 --- a/nanohttp/nanohttp-ssl.c +++ b/nanohttp/nanohttp-ssl.c @@ -167,7 +167,7 @@ user_verify (X509 * cert) #endif SSL_CTX * -initialize_ctx (char *keyfile, char *password, char *calist) +initialize_ctx (const char *keyfile, const char *password, const char *calist) { SSL_CTX *ctx = NULL; -- cgit v1.1-32-gdbae