Skip to content

Commit 339b08a

Browse files
authored
doc: make some debug message and comments accurate.
1 parent 187ad5c commit 339b08a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/ngx_http_lua_module.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1178,15 +1178,15 @@ ngx_http_lua_create_srv_conf(ngx_conf_t *cf)
11781178
* lscf->srv.ssl_cert_chunkname = NULL;
11791179
* lscf->srv.ssl_cert_src_key = NULL;
11801180
*
1181-
* lscf->srv.ssl_session_store_handler = NULL;
1182-
* lscf->srv.ssl_session_store_src = { 0, NULL };
1183-
* lscf->srv.ssl_session_store_chunkname = NULL;
1184-
* lscf->srv.ssl_session_store_src_key = NULL;
1181+
* lscf->srv.ssl_sess_store_handler = NULL;
1182+
* lscf->srv.ssl_sess_store_src = { 0, NULL };
1183+
* lscf->srv.ssl_sess_store_chunkname = NULL;
1184+
* lscf->srv.ssl_sess_store_src_key = NULL;
11851185
*
1186-
* lscf->srv.ssl_session_fetch_handler = NULL;
1187-
* lscf->srv.ssl_session_fetch_src = { 0, NULL };
1188-
* lscf->srv.ssl_session_fetch_chunkname = NULL;
1189-
* lscf->srv.ssl_session_fetch_src_key = NULL;
1186+
* lscf->srv.ssl_sess_fetch_handler = NULL;
1187+
* lscf->srv.ssl_sess_fetch_src = { 0, NULL };
1188+
* lscf->srv.ssl_sess_fetch_chunkname = NULL;
1189+
* lscf->srv.ssl_sess_fetch_src_key = NULL;
11901190
*
11911191
* lscf->balancer.handler = NULL;
11921192
* lscf->balancer.src = { 0, NULL };

src/ngx_http_lua_ssl_client_helloby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ ngx_http_lua_ssl_client_hello_aborted(void *data)
390390
{
391391
ngx_http_lua_ssl_ctx_t *cctx = data;
392392

393-
dd("lua ssl client hello done");
393+
dd("lua ssl client hello aborted");
394394

395395
if (cctx->done) {
396396
/* completed successfully already */

0 commit comments

Comments
 (0)