eliminate the useless space symbol
This commit is contained in:
parent
cc415a0f64
commit
449fb3af0d
1 changed files with 2 additions and 2 deletions
|
@ -242,7 +242,7 @@ ngx_http_memcached_create_request(ngx_http_request_t *r)
|
||||||
return NGX_ERROR;
|
return NGX_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
len = sizeof("get ") - 1 + vv->len + sizeof(" " CRLF) - 1;
|
len = sizeof("get ") - 1 + vv->len + sizeof(CRLF) - 1;
|
||||||
if (vv->len) {
|
if (vv->len) {
|
||||||
len += 1 + vv->len;
|
len += 1 + vv->len;
|
||||||
}
|
}
|
||||||
|
@ -275,7 +275,7 @@ ngx_http_memcached_create_request(ngx_http_request_t *r)
|
||||||
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
|
||||||
"http memcached request: \"%V\"", &ctx->key);
|
"http memcached request: \"%V\"", &ctx->key);
|
||||||
|
|
||||||
*b->last++ = ' '; *b->last++ = CR; *b->last++ = LF;
|
*b->last++ = CR; *b->last++ = LF;
|
||||||
|
|
||||||
return NGX_OK;
|
return NGX_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue