aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2018-04-20 07:45:13 +0000
committerAnders Broman <a.broman58@gmail.com>2018-04-20 08:37:43 +0000
commit2ac3cf1500b31c3f362efc4d8247bb3644eca069 (patch)
tree8d4681ad19c65302b944842aeeaea58b7bd005d1
parent7124fe671583dd94367c83c4f74e3f2858cbcde0 (diff)
protobuf: fix typo reponse => response
Change-Id: Idca4c721d2f6f33ac5be5cc2637303c937d639e3 Reviewed-on: https://code.wireshark.org/review/27044 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
-rw-r--r--epan/dissectors/packet-protobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-protobuf.c b/epan/dissectors/packet-protobuf.c
index 4177d4ad7c..a8de0d3194 100644
--- a/epan/dissectors/packet-protobuf.c
+++ b/epan/dissectors/packet-protobuf.c
@@ -463,7 +463,7 @@ dissect_one_protobuf_field(tvbuff_t *tvb, guint* offset, guint maxlen, packet_in
/* try to find field_info first */
if (data) {
const gchar* message_info = (const gchar*)data;
- /* find call_path + request or reponse part from format:
+ /* find call_path + request or response part from format:
* http2_content_type "," http2_path "," ("request" / "response")
* Acording to grpc wire format guide, it will be:
* "application/grpc" [("+proto" / "+json" / {custom})] "," "/" service-name "/" method-name "/" "," ("request" / "response")