diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-05-04 15:32:46 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-05-04 15:32:46 +0000 |
commit | ac72bd17d1c845b81aa9d1050b764ba1018ae462 (patch) | |
tree | e7df03607b73b7c1cca5438fa02b6022c0e37e74 /src/http/modules/ngx_http_memcached_module.c | |
parent | 2cca46c774157b529c439eafe0083d75e74f138a (diff) | |
download | nginx-ac72bd17d1c845b81aa9d1050b764ba1018ae462.tar.gz nginx-ac72bd17d1c845b81aa9d1050b764ba1018ae462.zip |
nginx-0.3.44-RELEASE importrelease-0.3.44
*) Feature: the "wait" parameter in the "include" SSI command.
*) Feature: the Ukrainian and Byelorussian characters were added to
koi-win conversion table.
*) Bugfix: in the SSI.
Diffstat (limited to 'src/http/modules/ngx_http_memcached_module.c')
-rw-r--r-- | src/http/modules/ngx_http_memcached_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_memcached_module.c b/src/http/modules/ngx_http_memcached_module.c index 73c018ed9..ace8723e2 100644 --- a/src/http/modules/ngx_http_memcached_module.c +++ b/src/http/modules/ngx_http_memcached_module.c @@ -154,7 +154,7 @@ ngx_http_memcached_handler(ngx_http_request_t *r) ngx_http_memcached_ctx_t *ctx; ngx_http_memcached_loc_conf_t *mlcf; - if (r->method != NGX_HTTP_GET && r->method != NGX_HTTP_HEAD) { + if (!(r->method & (NGX_HTTP_GET|NGX_HTTP_HEAD))) { return NGX_HTTP_NOT_ALLOWED; } |