
fuankg at apache
Aug 20, 2012, 1:14 AM
Post #1 of 1
(28 views)
Permalink
|
|
svn commit: r1374941 - /httpd/httpd/trunk/modules/ssl/mod_ssl.c
|
|
Author: fuankg Date: Mon Aug 20 08:14:13 2012 New Revision: 1374941 URL: http://svn.apache.org/viewvc?rev=1374941&view=rev Log: Removed trailing semicolons. Modified: httpd/httpd/trunk/modules/ssl/mod_ssl.c Modified: httpd/httpd/trunk/modules/ssl/mod_ssl.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/ssl/mod_ssl.c?rev=1374941&r1=1374940&r2=1374941&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/mod_ssl.c (original) +++ httpd/httpd/trunk/modules/ssl/mod_ssl.c Mon Aug 20 08:14:13 2012 @@ -285,13 +285,13 @@ static const command_rec ssl_config_cmds APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL( modssl, AP, int, npn_advertise_protos_hook, (conn_rec *connection, apr_array_header_t *protos), - (connection, protos), OK, DECLINED); + (connection, protos), OK, DECLINED) /* Implement 'modssl_run_npn_proto_negotiated_hook'. */ APR_IMPLEMENT_OPTIONAL_HOOK_RUN_ALL( modssl, AP, int, npn_proto_negotiated_hook, (conn_rec *connection, const char *proto_name, apr_size_t proto_name_len), - (connection, proto_name, proto_name_len), OK, DECLINED); + (connection, proto_name, proto_name_len), OK, DECLINED) /* * the various processing hooks
|