Skip to content

Commit d6ec829

Browse files
committed
change: ensure that the 80-column limit is met
1 parent 0d1cc46 commit d6ec829

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ngx_http_lua_proxy_ssl_verifyby.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ ngx_http_lua_proxy_ssl_verify_handler(X509_STORE_CTX *x509_store, void *arg)
339339

340340
ngx_log_debug2(NGX_LOG_DEBUG_HTTP, c->log, 0,
341341
"proxy_ssl_verify_by_lua: handler return value: %i, "
342-
"cert verify callback exit code: %d", rc, cctx->exit_code);
342+
"cert verify callback exit code: %d", rc,
343+
cctx->exit_code);
343344

344345
c->log->action = "proxy pass SSL handshaking";
345346
return cctx->exit_code;

0 commit comments

Comments
 (0)