aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2018-04-20 07:38:48 +0000
committerAnders Broman <a.broman58@gmail.com>2018-04-20 08:37:10 +0000
commit8f3dac17394a0165743eb059f10ca0b3ac4d13be (patch)
treeae56d3e18ee86f1438693986f791550af232b41b
parent79014a50c3f7f06f4e0513c887e4cb1e85edf61c (diff)
grpc: fix typo reponse => response
Change-Id: Ib0f230881426e300a8553aac14ea4d0efe87642c Reviewed-on: https://code.wireshark.org/review/27042 Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-grpc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-grpc.c b/epan/dissectors/packet-grpc.c
index cfe656b2d2..4099ba1496 100644
--- a/epan/dissectors/packet-grpc.c
+++ b/epan/dissectors/packet-grpc.c
@@ -116,7 +116,7 @@ static dissector_handle_t grpc_handle;
/* GRPC message type dissector table list.
* Dissectors can register themselves in this table as grpc message data dissectors.
* Dissectors registered in this table may use pattern that
-* contains content-type,grpc-method-path(http2_path),request/reponse info, like:
+* contains content-type,grpc-method-path(http2_path),request/response info, like:
* application/grpc,/helloworld.Greeter/SayHello,request
* or just contains content-type:
* application/grpc
@@ -314,7 +314,7 @@ dissect_grpc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_
http2_path = http2_get_header_value(pinfo, HTTP2_HEADER_PATH, FALSE);
is_request = (http2_path != NULL);
- if (http2_path == NULL) { /* this reponse, so we get it from http2 request stream */
+ if (http2_path == NULL) { /* this response, so we get it from http2 request stream */
http2_path = http2_get_header_value(pinfo, HTTP2_HEADER_PATH, TRUE);
}