comparison src/http/ngx_http.c @ 81:b2ece31c976a

nginx-0.0.1-2003-04-24-18:46:08 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 24 Apr 2003 14:46:08 +0000
parents 59229033ae93
children 674d333f4296
comparison
equal deleted inserted replaced
80:939bc7cd9a90 81:b2ece31c976a
105 } 105 }
106 106
107 module = (ngx_http_module_t *) ngx_modules[i]->ctx; 107 module = (ngx_http_module_t *) ngx_modules[i]->ctx;
108 108
109 if (module->create_loc_conf) { 109 if (module->create_loc_conf) {
110 ngx_test_null(ctx->loc_conf[ngx_modules[i]->index], 110 ngx_test_null(ctx->loc_conf[module->index],
111 module->create_loc_conf(cf->pool), 111 module->create_loc_conf(cf->pool),
112 NGX_CONF_ERROR); 112 NGX_CONF_ERROR);
113 } 113 }
114 } 114 }
115 115