aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/http
diff options
context:
space:
mode:
authorGravatar Julien Boeuf <jboeuf@google.com>2016-05-18 22:12:43 -0700
committerGravatar Julien Boeuf <jboeuf@google.com>2016-05-18 22:12:43 -0700
commita4880374f9e49ce648cdf3b7512804613280075e (patch)
tree8ee37af5eab830def6f5f196e5f79b55169f12f5 /src/core/lib/http
parentfc1ed17fdea8ba574586cfc479f77de3b200f1c6 (diff)
parenta71b0afdc2916e85c03d73eb9fbedd3d9070676a (diff)
Merge branch 'master' of github.com:grpc/grpc into credentials_refactoring
Diffstat (limited to 'src/core/lib/http')
-rw-r--r--src/core/lib/http/parser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/lib/http/parser.c b/src/core/lib/http/parser.c
index a7efb5e73e..09b2ed40d1 100644
--- a/src/core/lib/http/parser.c
+++ b/src/core/lib/http/parser.c
@@ -161,8 +161,9 @@ static int add_header(grpc_http_parser *parser) {
cur++;
}
if (cur == end) {
- if (grpc_http1_trace)
+ if (grpc_http1_trace) {
gpr_log(GPR_ERROR, "Didn't find ':' in header string");
+ }
goto error;
}
GPR_ASSERT(cur >= beg);