From: Doug MacEachern Date: Tue, 17 Jul 2001 16:36:15 +0000 (+0000) Subject: dummy ssl hooks need to return an int value for server to function with mod_ssl compi... X-Git-Tag: 2.0.21~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d7d869e327527911b54e399a92f0abf7d0c6e4a2;p=apache dummy ssl hooks need to return an int value for server to function with mod_ssl compiled in git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89566 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/ssl/mod_ssl.c b/modules/ssl/mod_ssl.c index 826bea0bd2..754ca51640 100644 --- a/modules/ssl/mod_ssl.c +++ b/modules/ssl/mod_ssl.c @@ -220,26 +220,26 @@ static void ssl_hook_post_config( static int ssl_hook_pre_connection(conn_rec *r) { /* unused */ - return; + return DECLINED; } static int ssl_hook_process_connection(conn_rec *r) { /* call ssl_hook_NewConnection */ /* hook ssl_hook_CloseConnection() */ - return; + return DECLINED; } static int ssl_hook_handler(request_rec *r) { /* ssl_hook_Handler() */ - return; + return DECLINED; } static int ssl_hook_translate_name(request_rec *r) { /* ssl_hook_Translate() */ - return; + return DECLINED; } static void ssl_hook_init_child(apr_pool_t *pchild, server_rec *s) @@ -251,31 +251,31 @@ static void ssl_hook_init_child(apr_pool_t *pchild, server_rec *s) static int ssl_hook_auth_checker(request_rec *r) { /* ssl_hook_Auth() */ - return; + return DECLINED; } static int ssl_hook_check_user_id(request_rec *r) { /* ssl_hook_UserCheck */ - return; + return DECLINED; } static int ssl_hook_access_checker(request_rec *r) { /* ssl_hook_Access() */ - return; + return DECLINED; } static int ssl_hook_fixups(request_rec *r) { /* ssl_hook_Fixup() */ - return; + return DECLINED; } static int ssl_hook_post_read_request(request_rec *r) { /* ssl_hook_ReadReq() */ - return; + return DECLINED; } static void ssl_hook_child_init(apr_pool_t *pchild, server_rec *s)