diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-09-25 08:56:52 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-09-25 08:56:52 +0000 |
commit | ef3e5bd892faf622a7d28dc5098445be686ac77f (patch) | |
tree | b642eb108dba00c7024acd52e1393a7d18d79e2c | |
parent | 7c20ed83239ac68435e55f664af485e5c069c327 (diff) | |
download | nginx-ef3e5bd892faf622a7d28dc5098445be686ac77f.tar.gz nginx-ef3e5bd892faf622a7d28dc5098445be686ac77f.zip |
long user-agent bugfix
-rw-r--r-- | src/http/modules/ngx_http_browser_module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/modules/ngx_http_browser_module.c b/src/http/modules/ngx_http_browser_module.c index 0c63780d0..c39616719 100644 --- a/src/http/modules/ngx_http_browser_module.c +++ b/src/http/modules/ngx_http_browser_module.c @@ -244,7 +244,7 @@ ngx_http_browser_variable(ngx_http_request_t *r, ngx_http_variable_value_t *v, name += browsers[i].add; if (name >= last) { - *v = ngx_http_variable_null_value; + continue; } ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, |