Skip to content

Commit 5826d30

Browse files
author
Tuure Vartiainen
committed
Removed trailing white spaces.
1 parent 8add1ff commit 5826d30

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/ngx_http_lua_module.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ ngx_http_lua_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
10701070
}
10711071

10721072
if (conf->srv.ssl_psk_identity_hint.len) {
1073-
dd("ssl psk identity hint: %.*s",
1073+
dd("ssl psk identity hint: %.*s",
10741074
(int) conf->srv.ssl_psk_identity_hint.len,
10751075
conf->srv.ssl_psk_identity_hint.data);
10761076

@@ -1126,7 +1126,7 @@ ngx_http_lua_merge_srv_conf(ngx_conf_t *cf, void *parent, void *child)
11261126

11271127
# if OPENSSL_VERSION_NUMBER >= 0x1000000fL
11281128

1129-
SSL_CTX_set_psk_server_callback(sscf->ssl.ctx,
1129+
SSL_CTX_set_psk_server_callback(sscf->ssl.ctx,
11301130
ngx_http_lua_ssl_psk_server_handler);
11311131

11321132
# else

src/ngx_http_lua_ssl_pskby.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Based on ngx_http_lua_ssl_certby.c and ngx_http_lua_ssl_session_storeby.c
44
* by Yichun Zhang (agentzh)
5-
*
5+
*
66
* Author: Tuure Vartiainen (vartiait)
77
*/
88

@@ -593,7 +593,7 @@ ngx_http_lua_ssl_psk_by_chunk(lua_State *L, ngx_http_request_t *r)
593593

594594
/* set psk key from key to lua context. */
595595
int
596-
ngx_http_lua_ffi_ssl_set_psk_key(ngx_http_request_t *r,
596+
ngx_http_lua_ffi_ssl_set_psk_key(ngx_http_request_t *r,
597597
const char *key, size_t len, char **err)
598598
{
599599
u_char *buf;

src/ngx_http_lua_ssl_pskby.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Based on ngx_http_lua_ssl_certby.h and ngx_http_lua_ssl_session_storeby.h
44
* by Yichun Zhang (agentzh)
5-
*
5+
*
66
* Author: Tuure Vartiainen (vartiait)
77
*/
88

0 commit comments

Comments
 (0)