From 5f9c4d75e8438b9f361d3864f13e001273f5997f Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Wed, 30 Apr 2014 11:06:21 -0700 Subject: [PATCH] nginx: cosmetics: Splits lines longer than 80 characters --- nginx/modsecurity/ngx_http_modsecurity.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx/modsecurity/ngx_http_modsecurity.c b/nginx/modsecurity/ngx_http_modsecurity.c index 34ec940f..232d4528 100644 --- a/nginx/modsecurity/ngx_http_modsecurity.c +++ b/nginx/modsecurity/ngx_http_modsecurity.c @@ -652,7 +652,8 @@ ngx_http_modsecurity_save_request_body(ngx_http_request_t *r) ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR); return NGX_OK; } - str->len = ngx_snprintf(str->data, NGX_OFF_T_LEN, "%O", content_length) - str->data; + str->len = ngx_snprintf(str->data, NGX_OFF_T_LEN, "%O", + content_length) - str->data; }