aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-oer.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2018-10-30 15:22:03 +0100
committerAnders Broman <a.broman58@gmail.com>2018-10-30 15:14:25 +0000
commit0bbcd34f5ec26eb2d91b06d7d8fe8f38b73e0a61 (patch)
treed922c0414997fce1060c6b0b0f7fe61f9faf06dc /epan/dissectors/packet-oer.c
parent9f472ea1501f8deb0109ea61feda6b8a5eec4f6a (diff)
OER: fix a few typos
Change-Id: I1a872e29b5ee0706c69ce249c7741c7aab6920c0 Reviewed-on: https://code.wireshark.org/review/30433 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-oer.c')
-rw-r--r--epan/dissectors/packet-oer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-oer.c b/epan/dissectors/packet-oer.c
index b909566b9e..4127997126 100644
--- a/epan/dissectors/packet-oer.c
+++ b/epan/dissectors/packet-oer.c
@@ -23,7 +23,7 @@
#include "packet-oer.h"
-#define PNAME "Ocetet Encoding Rules (ASN.1)"
+#define PNAME "Octet Encoding Rules (ASN.1)"
#define PSNAME "OER"
#define PFNAME "oer"
@@ -619,7 +619,7 @@ dissect_oer_choice(tvbuff_t *tvb, guint32 offset, asn1_ctx_t *actx, proto_tree *
*/
oct = tvb_get_guint8(tvb, offset);
if ((oct & 0x80) == 0x80) {
- dissect_oer_not_decoded_yet(tree, actx->pinfo, tvb, "Choise, Tag value > 0x7f not implemented yet");
+ dissect_oer_not_decoded_yet(tree, actx->pinfo, tvb, "Choice, Tag value > 0x7f not implemented yet");
} else {
/* Bits 7 to 1 of the first subsequent octet shall not be all set to 0.*/
tag = oct;
@@ -655,7 +655,7 @@ dissect_oer_choice(tvbuff_t *tvb, guint32 offset, asn1_ctx_t *actx, proto_tree *
choice++;
}
- dissect_oer_not_decoded_yet(tree, actx->pinfo, tvb, "Choise : No matching tag");
+ dissect_oer_not_decoded_yet(tree, actx->pinfo, tvb, "Choice : No matching tag");
return tvb_reported_length(tvb);
}