comparison src/http/modules/ngx_http_memcached_module.c @ 310:95d92ec39071 NGINX_0_5_25

nginx 0.5.25 *) Bugfix: nginx could not be built with the --without-http_rewrite_module parameter; bug appeared in 0.5.24.
author Igor Sysoev <http://sysoev.ru>
date Mon, 11 Jun 2007 00:00:00 +0400
parents 675a39fd14cd
children d16d691432c9
comparison
equal deleted inserted replaced
309:638a3e67d37d 310:95d92ec39071
593 593
594 ngx_memzero(&u, sizeof(ngx_url_t)); 594 ngx_memzero(&u, sizeof(ngx_url_t));
595 595
596 u.url = value[1]; 596 u.url = value[1];
597 u.no_resolve = 1; 597 u.no_resolve = 1;
598 /* u.uri_part = 1; may be used as namespace */
599 598
600 lcf->upstream.upstream = ngx_http_upstream_add(cf, &u, 0); 599 lcf->upstream.upstream = ngx_http_upstream_add(cf, &u, 0);
601 if (lcf->upstream.upstream == NULL) { 600 if (lcf->upstream.upstream == NULL) {
602 return NGX_CONF_ERROR; 601 return NGX_CONF_ERROR;
603 } 602 }