Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ngx_http_lua_bodyfilterby.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ ngx_http_lua_body_filter(ngx_http_request_t *r, ngx_chain_t *in)
ngx_http_lua_loc_conf_t *llcf;
ngx_http_lua_ctx_t *ctx;
ngx_int_t rc;
uint16_t old_context;
uint32_t old_context;
ngx_pool_cleanup_t *cln;
ngx_chain_t *out;
ngx_chain_t *cl, *ln;
Expand Down
2 changes: 1 addition & 1 deletion src/ngx_http_lua_headerfilterby.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ ngx_http_lua_header_filter(ngx_http_request_t *r)
ngx_http_lua_ctx_t *ctx;
ngx_int_t rc;
ngx_pool_cleanup_t *cln;
uint16_t old_context;
uint32_t old_context;

ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"lua header filter for user lua code, uri \"%V\"", &r->uri);
Expand Down
Loading