aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/asn1/packet-asn1.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-03-18 22:24:24 +0000
committerBill Meier <wmeier@newsguy.com>2012-03-18 22:24:24 +0000
commit2df5dc3d533008334c3705b9a1d3683663a88ae2 (patch)
tree39266fb60b61337685d57db6e23138c074c61a93 /plugins/asn1/packet-asn1.c
parenta7041cacb0552d85d6e173a6d2e54e2bce4c73b4 (diff)
From Reinhard Speyerer: Fix several misspellings/typos in Wireshark
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6967 svn path=/trunk/; revision=41645
Diffstat (limited to 'plugins/asn1/packet-asn1.c')
-rw-r--r--plugins/asn1/packet-asn1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/asn1/packet-asn1.c b/plugins/asn1/packet-asn1.c
index 159608a28d..f4842dd238 100644
--- a/plugins/asn1/packet-asn1.c
+++ b/plugins/asn1/packet-asn1.c
@@ -4783,7 +4783,7 @@ getPDUprops(PDUprops *out, guint offset, guint class, guint tag, guint cons)
/* showNode(pos.node, 3, 4); */
pos.type = gettype(pos.node); /* the resulting type */
info = getinfo(pos.node);
- tmp = "inknown tag";
+ tmp = "unknown tag";
if ((info->tclass == BER_CLASS_UNI) && (info->tag < 31)) {
tmp = asn1_tag[info->tag];
pos.type = asn1_uni_type[info->tag]; /* get univsrsal type */
@@ -5155,7 +5155,7 @@ proto_reg_handoff_asn1(void) {
pcount = 0;
#ifdef JUST_ONE_PORT
- if (asn1_verbose) g_message("prefs change: tcpport=%u, udpport=%u, sctpport=%u, desegnment=%d, "
+ if (asn1_verbose) g_message("prefs change: tcpport=%u, udpport=%u, sctpport=%u, desegment=%d, "
"asn1file=%s, pduname=%s, first_offset=%d, debug=%d, msg_win=%d, verbose=%d",
global_tcp_port_asn1, global_udp_port_asn1, global_sctp_port_asn1, asn1_desegment,
asn1_filename, asn1_pduname, first_pdu_offset, asn1_debug, asn1_message_win, asn1_verbose);
@@ -5165,7 +5165,7 @@ proto_reg_handoff_asn1(void) {
tcp_ports_asn1_string = range_convert_range(global_tcp_ports_asn1);
udp_ports_asn1_string = range_convert_range(global_udp_ports_asn1);
sctp_ports_asn1_string = range_convert_range(global_sctp_ports_asn1);
- g_message("prefs change: tcpports=%s, udpports=%s, sctpports=%s, desegnment=%d, "
+ g_message("prefs change: tcpports=%s, udpports=%s, sctpports=%s, desegment=%d, "
"asn1file=%s, pduname=%s, first_offset=%d, debug=%d, msg_win=%d, verbose=%d",
tcp_ports_asn1_string, udp_ports_asn1_string, sctp_ports_asn1_string, asn1_desegment,
asn1_filename, asn1_pduname, first_pdu_offset, asn1_debug, asn1_message_win, asn1_verbose);