From b14d9d622f85ed8638d7367319bf8867e7c095bb Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 3 Aug 2013 23:45:10 +0900 Subject: [PATCH] Fix error string --- lib/nghttp2_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nghttp2_helper.c b/lib/nghttp2_helper.c index fac1dd29..d0fa867a 100644 --- a/lib/nghttp2_helper.c +++ b/lib/nghttp2_helper.c @@ -125,7 +125,7 @@ const char* nghttp2_strerror(int error_code) case NGHTTP2_ERR_DEFERRED_DATA_EXIST: return "Another DATA frame has already been deferred"; case NGHTTP2_ERR_START_STREAM_NOT_ALLOWED: - return "SYN_STREAM is not allowed"; + return "request HEADERS is not allowed"; case NGHTTP2_ERR_GOAWAY_ALREADY_SENT: return "GOAWAY has already been sent"; case NGHTTP2_ERR_INVALID_HEADER_BLOCK: