소스 검색

Correct HTTP/2 :path compile error

bel2125 3 년 전
부모
커밋
13c30b2fb1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/mod_http2.inl

+ 1 - 1
src/mod_http2.inl

@@ -1546,7 +1546,7 @@ handle_http2(struct mg_connection *conn)
 					} else if (!strcmp(":path", key)) {
 						conn->request_info.local_uri = val;
 						conn->request_info.request_uri = val;
-						conn->request_info.local_raw = val;
+						conn->request_info.local_uri_raw = val;
 					} else if (!strcmp(":status", key)) {
 						conn->status_code = atoi(val);
 					}