diff options
Diffstat (limited to 'src/http/modules/perl/ngx_http_perl_module.h')
-rw-r--r-- | src/http/modules/perl/ngx_http_perl_module.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/http/modules/perl/ngx_http_perl_module.h b/src/http/modules/perl/ngx_http_perl_module.h index 4f1eaa3a2..5c967dfb3 100644 --- a/src/http/modules/perl/ngx_http_perl_module.h +++ b/src/http/modules/perl/ngx_http_perl_module.h @@ -29,7 +29,10 @@ typedef struct { SV *next; - ngx_uint_t done; /* unsigned done:1; */ + ngx_int_t status; + + unsigned done:1; + unsigned error:1; ngx_array_t *variables; /* array of ngx_http_perl_var_t */ |