diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-04-16 19:25:09 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-04-16 19:25:09 +0000 |
commit | c7f876bd4c3916b5a1553da88d73d97d76ac72e3 (patch) | |
tree | 1dfec08b372f51daed66162179b246e99217cabf /src/http/modules/ngx_http_fastcgi_module.c | |
parent | c26e7b9d49cf2d143b194342bf8d6f37de6ae197 (diff) | |
download | nginx-c7f876bd4c3916b5a1553da88d73d97d76ac72e3.tar.gz nginx-c7f876bd4c3916b5a1553da88d73d97d76ac72e3.zip |
move zone name from ngx_shm_zone_t to ngx_shm_t to use Win32 shared memory
Diffstat (limited to 'src/http/modules/ngx_http_fastcgi_module.c')
-rw-r--r-- | src/http/modules/ngx_http_fastcgi_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_fastcgi_module.c b/src/http/modules/ngx_http_fastcgi_module.c index dfa5346f5..b0e959511 100644 --- a/src/http/modules/ngx_http_fastcgi_module.c +++ b/src/http/modules/ngx_http_fastcgi_module.c @@ -2043,7 +2043,7 @@ ngx_http_fastcgi_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child) ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, "\"fastcgi_cache\" zone \"%V\" is unknown", - &shm_zone->name); + &shm_zone->shm.name); return NGX_CONF_ERROR; } |