comparison src/http/modules/perl/ngx_http_perl_module.c @ 1025:f88651afad40

style fix: remove tabs
author Igor Sysoev <igor@sysoev.ru>
date Fri, 12 Jan 2007 20:26:39 +0000
parents a5b9cdfe3e19
children e6fc18f1a032
comparison
equal deleted inserted replaced
1024:eeadc558e86d 1025:f88651afad40
197 197
198 if (ctx == NULL) { 198 if (ctx == NULL) {
199 ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t)); 199 ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
200 if (ctx == NULL) { 200 if (ctx == NULL) {
201 ngx_http_finalize_request(r, NGX_ERROR); 201 ngx_http_finalize_request(r, NGX_ERROR);
202 return; 202 return;
203 } 203 }
204 204
205 ngx_http_set_ctx(r, ctx, ngx_http_perl_module); 205 ngx_http_set_ctx(r, ctx, ngx_http_perl_module);
206 } 206 }
207 207