From 714e568f66931643be82ee19c408139bfadb9b4a Mon Sep 17 00:00:00 2001 From: Martin Mathieson Date: Tue, 6 Feb 2024 10:46:08 +0000 Subject: [PATCH] Fix some more spelling errors --- editcap.c | 2 +- epan/address_types.c | 4 ++-- epan/disabled_protos.c | 2 +- epan/expert.c | 2 +- epan/packet.c | 6 ++--- epan/proto.c | 4 ++-- epan/protobuf_lang_tree.c | 2 +- epan/reassemble.c | 6 ++--- epan/tvbuff_rdp.c | 24 +++++++++---------- file.c | 2 +- plugins/codecs/l16_mono/README | 2 +- .../epan/ethercat/packet-ethercat-datagram.c | 2 +- .../epan/falco_bridge/packet-falco-bridge.c | 2 +- plugins/epan/mate/mate_util.c | 2 +- plugins/epan/opcua/opcua.c | 2 +- plugins/epan/profinet/packet-pn-dcp.c | 2 +- plugins/epan/profinet/packet-pn-rsi.c | 2 +- plugins/epan/profinet/packet-pn-rt.c | 14 +++++------ plugins/epan/profinet/packet-pn-rtc-one.c | 2 +- plugins/epan/wimax/mac_hd_type1_decoder.c | 2 +- plugins/epan/wimax/mac_hd_type2_decoder.c | 2 +- plugins/epan/wimaxasncp/packet-wimaxasncp.c | 4 ++-- tools/wireshark_words.txt | 9 +++++-- wiretap/pcapng.c | 4 ++-- wiretap/visual.c | 2 +- wiretap/vwr.c | 2 +- 26 files changed, 57 insertions(+), 52 deletions(-) diff --git a/editcap.c b/editcap.c index eda0e21dd0..8af5f7317b 100644 --- a/editcap.c +++ b/editcap.c @@ -1477,7 +1477,7 @@ main(int argc, char *argv[]) int choplen = 0, chopoff = 0; switch (sscanf(ws_optarg, "%d:%d", &chopoff, &choplen)) { - case 1: /* only the chop length was specififed */ + case 1: /* only the chop length was specified */ choplen = chopoff; chopoff = 0; break; diff --git a/epan/address_types.c b/epan/address_types.c index f2b9e7aec6..de7e8753e7 100644 --- a/epan/address_types.c +++ b/epan/address_types.c @@ -341,11 +341,11 @@ static int fc_len(void) ******************************************************************************/ /* FC Network Header Network Address Authority Identifiers */ #define FC_NH_NAA_IEEE 1 /* IEEE 802.1a */ -#define FC_NH_NAA_IEEE_E 2 /* IEEE Exteneded */ +#define FC_NH_NAA_IEEE_E 2 /* IEEE Extended */ #define FC_NH_NAA_LOCAL 3 #define FC_NH_NAA_IP 4 /* 32-bit IP address */ #define FC_NH_NAA_IEEE_R 5 /* IEEE Registered */ -#define FC_NH_NAA_IEEE_R_E 6 /* IEEE Registered Exteneded */ +#define FC_NH_NAA_IEEE_R_E 6 /* IEEE Registered Extended */ /* according to FC-PH 3 draft these are now reclaimed and reserved */ #define FC_NH_NAA_CCITT_INDV 12 /* CCITT 60 bit individual address */ #define FC_NH_NAA_CCITT_GRP 14 /* CCITT 60 bit group address */ diff --git a/epan/disabled_protos.c b/epan/disabled_protos.c index fa0bec43f7..f8cb4a3aed 100644 --- a/epan/disabled_protos.c +++ b/epan/disabled_protos.c @@ -43,7 +43,7 @@ typedef struct { */ typedef struct { char *name; /* heuristic short name */ - gboolean enabled; /* heuristc enabled */ + gboolean enabled; /* heuristic enabled */ } heur_protocol_def; /* diff --git a/epan/expert.c b/epan/expert.c index bceb439273..d2e78975d8 100644 --- a/epan/expert.c +++ b/epan/expert.c @@ -578,7 +578,7 @@ expert_set_info_vformat(packet_info *pinfo, proto_item *pi, int group, int sever * to write. */ if (pos >= ITEM_LABEL_LENGTH) { - /* Truncation occured. It might have split a UTF-8 character. */ + /* Truncation occurred. It might have split a UTF-8 character. */ ws_utf8_truncate(formatted, ITEM_LABEL_LENGTH - 1); } diff --git a/epan/packet.c b/epan/packet.c index 9ad8df37a8..dc360e1154 100644 --- a/epan/packet.c +++ b/epan/packet.c @@ -1356,7 +1356,7 @@ void dissector_add_uint_range_with_preference(const char *name, const char* rang with a particular pattern. */ /* NOTE: this doesn't use the dissector call variable. It is included to */ -/* be consistant with the dissector_add_uint and more importantly to be used */ +/* be consistent with the dissector_add_uint and more importantly to be used */ /* if the technique of adding a temporary dissector is implemented. */ /* If temporary dissectors are deleted, then the original dissector must */ /* be available. */ @@ -1766,7 +1766,7 @@ dissector_add_string(const char *name, const gchar *pattern, with a particular pattern. */ /* NOTE: this doesn't use the dissector call variable. It is included to */ -/* be consistant with the dissector_add_string and more importantly to */ +/* be consistent with the dissector_add_string and more importantly to */ /* be used if the technique of adding a temporary dissector is */ /* implemented. */ /* If temporary dissectors are deleted, then the original dissector must */ @@ -3317,7 +3317,7 @@ find_dissector(const char *name) return (dissector_handle_t)g_hash_table_lookup(registered_dissectors, name); } -/** Find a dissector by name and add parent protocol as a depedency*/ +/** Find a dissector by name and add parent protocol as a dependency*/ dissector_handle_t find_dissector_add_dependency(const char *name, const int parent_proto) { dissector_handle_t handle = (dissector_handle_t)g_hash_table_lookup(registered_dissectors, name); diff --git a/epan/proto.c b/epan/proto.c index 785e036fc6..46cae0e3f9 100644 --- a/epan/proto.c +++ b/epan/proto.c @@ -7190,7 +7190,7 @@ proto_custom_set(proto_tree* tree, GSList *field_ids, gint occurrence, continue; } - /* Calculate single index or set outer bounderies */ + /* Calculate single index or set outer boundaries */ if (occurrence < 0) { i = occurrence + len + prev_len; last = i; @@ -7339,7 +7339,7 @@ proto_custom_get_filter(epan_dissect_t* edt, GSList *field_ids, gint occurrence) continue; } - /* Calculate single index or set outer bounderies */ + /* Calculate single index or set outer boundaries */ if (occurrence < 0) { i = occurrence + len + prev_len; last = i; diff --git a/epan/protobuf_lang_tree.c b/epan/protobuf_lang_tree.c index 0a27df6ce8..bf60033168 100644 --- a/epan/protobuf_lang_tree.c +++ b/epan/protobuf_lang_tree.c @@ -109,7 +109,7 @@ pbl_reinit_descriptor_pool(pbl_descriptor_pool_t** ppool, const char** directori *ppool = p; } -/* free all memory used by this protocol buffers languange pool */ +/* free all memory used by this protocol buffers language pool */ void pbl_free_pool(pbl_descriptor_pool_t* pool) { diff --git a/epan/reassemble.c b/epan/reassemble.c index 6f06a8f1c7..035128973f 100644 --- a/epan/reassemble.c +++ b/epan/reassemble.c @@ -678,7 +678,7 @@ fragment_add_seq_offset(reassembly_table *table, const packet_info *pinfo, const if (!fd_head) return; - /* Reseting the offset is not allowed */ + /* Resetting the offset is not allowed */ if ( fd_head->fragment_nr_offset != 0 ) return; @@ -3309,7 +3309,7 @@ reassemble_streaming_data_and_call_subdissector( } frame_ptr = (guint64*)wmem_memdup(wmem_file_scope(), &cur_frame_num, sizeof(guint64)); wmem_map_insert(reassembly_info->frame_num_frag_offset_map, frame_ptr, GUINT_TO_POINTER(frag_offset)); - /* This payload contains the data of previous msp, so we point to it. That may be overriden late. */ + /* This payload contains the data of previous msp, so we point to it. That may be overridden late. */ wmem_map_insert(reassembly_info->multisegment_pdus, frame_ptr, reassembly_info->last_msp); } } else { @@ -3399,7 +3399,7 @@ reassemble_streaming_data_and_call_subdissector( "Subdissector MUST NOT set pinfo->desegment_offset(%d) in previous or next part of MSP, must between (%d, %d).", pinfo->desegment_offset, reassembly_info->last_msp->length, reassembly_info->last_msp->length + bytes_belong_to_prev_msp)); - /* shorten the bytes_belong_to_prev_msp and just truncate the ressembled tvb */ + /* shorten the bytes_belong_to_prev_msp and just truncate the reassembled tvb */ bytes_belong_to_prev_msp = pinfo->desegment_offset - reassembly_info->last_msp->length; fragment_truncate(&streaming_reassembly_table, pinfo, reassembly_id, NULL, pinfo->desegment_offset); found_BoMSP = TRUE; diff --git a/epan/tvbuff_rdp.c b/epan/tvbuff_rdp.c index 4beb24c59d..8e69cb0561 100644 --- a/epan/tvbuff_rdp.c +++ b/epan/tvbuff_rdp.c @@ -109,7 +109,7 @@ typedef struct { guint32 valueBase; } zgfx_token_t; -static const zgfx_token_t ZGFX_LITTERAL_TABLE[] = { +static const zgfx_token_t ZGFX_LITERAL_TABLE[] = { // prefixLength prefixCode valueBits valueBase { 5, 24, 0, 0x00 }, // 11000 { 5, 25, 0, 0x01 }, // 11001 @@ -173,7 +173,7 @@ zgfx_context_t *zgfx_context_new(wmem_allocator_t *allocator) { } static void -zgfx_write_history_litteral(zgfx_context_t *zgfx, guint8 c) +zgfx_write_history_literal(zgfx_context_t *zgfx, guint8 c) { zgfx->historyBuffer[zgfx->historyIndex] = c; zgfx->historyIndex = (zgfx->historyIndex + 1) % zgfx->historyBufferSize; @@ -234,14 +234,14 @@ zgfx_write_history_buffer(zgfx_context_t *zgfx, const guint8 *src, guint32 count static gboolean -zgfx_write_litteral(zgfx_context_t *zgfx, guint8 c) +zgfx_write_literal(zgfx_context_t *zgfx, guint8 c) { if (zgfx->outputCount == 65535) return FALSE; zgfx->outputSegment[zgfx->outputCount++] = c; - zgfx_write_history_litteral(zgfx, c); + zgfx_write_history_literal(zgfx, c); return TRUE; } @@ -362,16 +362,16 @@ rdp8_decompress_segment(zgfx_context_t *zgfx, tvbuff_t *tvb) if (!ok) return FALSE; - // 0 - litteral + // 0 - literal if (bits_val == 0) { bits_val = bitstream_getbits(&bitstream, 8, &ok); - if (!zgfx_write_litteral(zgfx, bits_val)) + if (!zgfx_write_literal(zgfx, bits_val)) return FALSE; continue; } - // 1x - match or litteral branch + // 1x - match or literal branch bits_val = bitstream_getbits(&bitstream, 1, &ok); if (bits_val == 0) { // 10 - match @@ -380,10 +380,10 @@ rdp8_decompress_segment(zgfx_context_t *zgfx, tvbuff_t *tvb) ntokens = sizeof(ZGFX_MATCH_TABLE) / sizeof(ZGFX_MATCH_TABLE[0]); inPrefix = 2; } else { - // 11 - litteral + // 11 - literal ismatch = false; - tokens = ZGFX_LITTERAL_TABLE; - ntokens = sizeof(ZGFX_LITTERAL_TABLE) / sizeof(ZGFX_LITTERAL_TABLE[0]); + tokens = ZGFX_LITERAL_TABLE; + ntokens = sizeof(ZGFX_LITERAL_TABLE) / sizeof(ZGFX_LITERAL_TABLE[0]); inPrefix = 3; } @@ -460,9 +460,9 @@ rdp8_decompress_segment(zgfx_context_t *zgfx, tvbuff_t *tvb) return FALSE; } } else { - /* Litteral */ + /* literal */ bits_val = tokens[i].valueBase; - if (!zgfx_write_litteral(zgfx, bits_val)) + if (!zgfx_write_literal(zgfx, bits_val)) return FALSE; } } diff --git a/file.c b/file.c index 6df6f3824c..561dd3b83a 100644 --- a/file.c +++ b/file.c @@ -1236,7 +1236,7 @@ add_packet_to_packet_list(frame_data *fdata, capture_file *cf, prime_epan_dissect_with_postdissector_wanted_hfids(edt); } - /* Intitialize passed_dfilter here so that dissectors can hide packets. */ + /* Initialize passed_dfilter here so that dissectors can hide packets. */ /* XXX We might want to add a separate "visible" bit to frame_data instead. */ fdata->passed_dfilter = 1; diff --git a/plugins/codecs/l16_mono/README b/plugins/codecs/l16_mono/README index 993730a4e6..8faa8e1c37 100644 --- a/plugins/codecs/l16_mono/README +++ b/plugins/codecs/l16_mono/README @@ -1,3 +1,3 @@ This codec plugin serves a dual purpose. -First it is to add L16 codec suppport to Wireshark. +First it is to add L16 codec support to Wireshark. Second it is an illustration of a basic codec plugin module. diff --git a/plugins/epan/ethercat/packet-ethercat-datagram.c b/plugins/epan/ethercat/packet-ethercat-datagram.c index 24f20943ec..e1d98d1095 100644 --- a/plugins/epan/ethercat/packet-ethercat-datagram.c +++ b/plugins/epan/ethercat/packet-ethercat-datagram.c @@ -3511,7 +3511,7 @@ void proto_register_ecat(void) FT_BOOLEAN, 8, TFS(&tfs_local_true_false), 0x10, NULL, HFILL } }, { &hf_ecat_reg_dc_activation_stimecheck, - {"Start time chheck", "ecat.reg.dc.activation.stimecheck", + {"Start time check", "ecat.reg.dc.activation.stimecheck", FT_BOOLEAN, 8, TFS(&tfs_local_true_false), 0x20, NULL, HFILL } }, { &hf_ecat_reg_dc_activation_hlfrange, diff --git a/plugins/epan/falco_bridge/packet-falco-bridge.c b/plugins/epan/falco_bridge/packet-falco-bridge.c index cb0cba9079..10e6ea4703 100644 --- a/plugins/epan/falco_bridge/packet-falco-bridge.c +++ b/plugins/epan/falco_bridge/packet-falco-bridge.c @@ -606,7 +606,7 @@ fd_tap_listener(void *tapdata, packet_info *pinfo, guint32 get_fd_stream_count(void) { - // This effectively desables the "streams" dropdown, which is we don't really care about for the moment in logray. + // This effectively disables the "streams" dropdown, which is we don't really care about for the moment in logray. return 1; } diff --git a/plugins/epan/mate/mate_util.c b/plugins/epan/mate/mate_util.c index 084428cf18..a50b7ac03e 100644 --- a/plugins/epan/mate/mate_util.c +++ b/plugins/epan/mate/mate_util.c @@ -825,7 +825,7 @@ extern void merge_avpl(AVPL* dst, AVPL* src, gboolean copy_avps) { } } - // if there are remaing source AVPs while there are no more destination + // if there are remaining source AVPs while there are no more destination // AVPs (cd now represents the NULL item, after the last item), append // all remaining source AVPs to the end while (cs->avp) { diff --git a/plugins/epan/opcua/opcua.c b/plugins/epan/opcua/opcua.c index 1271a7e8bf..10ad0e1b3f 100644 --- a/plugins/epan/opcua/opcua.c +++ b/plugins/epan/opcua/opcua.c @@ -499,7 +499,7 @@ static int dissect_opcua_message(tvbuff_t *tvb, packet_info *pinfo, proto_tree * guint16 src_port = pinfo->srcport; range_t *port_range; bool from_server = false; - bool decrypted = false; /* succesfully decrypted secure message */ + bool decrypted = false; /* successfully decrypted secure message */ enum ua_message_mode mode = UA_MessageMode_None; uint8_t sig_len = 0; struct ua_metadata metadata; diff --git a/plugins/epan/profinet/packet-pn-dcp.c b/plugins/epan/profinet/packet-pn-dcp.c index e36b58555b..23d0383a60 100644 --- a/plugins/epan/profinet/packet-pn-dcp.c +++ b/plugins/epan/profinet/packet-pn-dcp.c @@ -1435,7 +1435,7 @@ dissect_PNDCP_Suboption_Control(tvbuff_t *tvb, int offset, packet_info *pinfo, } -/* dissect the "deviceinitaitve" suboption */ +/* dissect the "deviceinitiatve" suboption */ static int dissect_PNDCP_Suboption_DeviceInitiative(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree, proto_item *block_item, proto_item *dcp_item, diff --git a/plugins/epan/profinet/packet-pn-rsi.c b/plugins/epan/profinet/packet-pn-rsi.c index 2a64987459..fe6e71ac4b 100644 --- a/plugins/epan/profinet/packet-pn-rsi.c +++ b/plugins/epan/profinet/packet-pn-rsi.c @@ -348,7 +348,7 @@ dissect_pn_rta_remaining_user_data_bytes(tvbuff_t *tvb, int offset, packet_info /* reassembling completed? */ if (fd_reass != NULL) { - /* is this the packet to show the reassembed payload in? */ + /* is this the packet to show the reassembled payload in? */ if (pinfo->fd->num == fd_reass->reassembled_in) { next_tvb = process_reassembled_data(tvb, 0, pinfo, "Reassembled PN IO RSI packet", fd_reass, &pn_rsi_frag_items, &update_col_info, tree); diff --git a/plugins/epan/profinet/packet-pn-rt.c b/plugins/epan/profinet/packet-pn-rt.c index 406867d5a8..f7f9387d1b 100644 --- a/plugins/epan/profinet/packet-pn-rt.c +++ b/plugins/epan/profinet/packet-pn-rt.c @@ -280,7 +280,7 @@ IsDFP_Frame(tvbuff_t *tvb, packet_info *pinfo, guint16 u16FrameID) gint tvb_len = 0; unsigned char virtualFramebuffer[16]; - /* try to build a temporaray buffer for generating this CRC */ + /* try to build a temporary buffer for generating this CRC */ if (!pinfo->src.data || !pinfo->dst.data || pinfo->dst.type != AT_ETHER || pinfo->src.type != AT_ETHER) { /* if we don't have src/dst mac addresses then we assume it's not @@ -447,11 +447,11 @@ dissect_CSF_SDU_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void * } -/* for reasemble processing we need some inits.. */ +/* for reassemble processing we need some inits.. */ /* Register PNIO defrag table init routine. */ static reassembly_table pdu_reassembly_table; -static GHashTable *reasembled_frag_table = NULL; +static GHashTable *reassembled_frag_table = NULL; static dissector_table_t ethertype_subdissector_table; @@ -464,13 +464,13 @@ pnio_defragment_init(void) guint32 i; for (i=0; i < 16; i++) /* init the reasemble help array */ start_frag_OR_ID[i] = 0; - reasembled_frag_table = g_hash_table_new(NULL, NULL); + reassembled_frag_table = g_hash_table_new(NULL, NULL); } static void pnio_defragment_cleanup(void) { - g_hash_table_destroy(reasembled_frag_table); + g_hash_table_destroy(reassembled_frag_table); } /* possibly dissect a FRAG_PDU related PN-RT packet */ @@ -547,12 +547,12 @@ dissect_FRAG_PDU_heur(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void if (pdu_frag && !bMoreFollows) /* PDU is complete! and last fragment */ { /* store this fragment as the completed fragment in hash table */ - g_hash_table_insert(reasembled_frag_table, GUINT_TO_POINTER(pinfo->num), pdu_frag); + g_hash_table_insert(reassembled_frag_table, GUINT_TO_POINTER(pinfo->num), pdu_frag); start_frag_OR_ID[u32FragID] = 0; /* reset the starting frame counter */ } if (!bMoreFollows) /* last fragment */ { - pdu_frag = (fragment_head *)g_hash_table_lookup(reasembled_frag_table, GUINT_TO_POINTER(pinfo->num)); + pdu_frag = (fragment_head *)g_hash_table_lookup(reassembled_frag_table, GUINT_TO_POINTER(pinfo->num)); if (pdu_frag) /* found a matching fragment; dissect it */ { guint16 type; diff --git a/plugins/epan/profinet/packet-pn-rtc-one.c b/plugins/epan/profinet/packet-pn-rtc-one.c index 7c336beb1f..af927205be 100644 --- a/plugins/epan/profinet/packet-pn-rtc-one.c +++ b/plugins/epan/profinet/packet-pn-rtc-one.c @@ -432,7 +432,7 @@ dissect_PNIO_C_SDU_RTC1(tvbuff_t *tvb, int offset, { proto_tree *data_tree = NULL; - /* Count & offset for comparation of the arrays */ + /* Count & offset for comparison of the arrays */ guint16 frameOffset; guint32 objectCounter; gboolean inputFlag; diff --git a/plugins/epan/wimax/mac_hd_type1_decoder.c b/plugins/epan/wimax/mac_hd_type1_decoder.c index 4c78a03f25..128be653b6 100644 --- a/plugins/epan/wimax/mac_hd_type1_decoder.c +++ b/plugins/epan/wimax/mac_hd_type1_decoder.c @@ -302,7 +302,7 @@ static int dissect_mac_header_type_1_decoder(tvbuff_t *tvb, packet_info *pinfo, proto_tree_add_item(ti_tree, hf_mac_header_type_1_fb_type, tvb, offset, 3, ENC_BIG_ENDIAN); /* Decode and display the FBSSI */ proto_tree_add_item(ti_tree, hf_mac_header_type_1_fbssi, tvb, offset, 3, ENC_BIG_ENDIAN); - /* Decode and display the Prreferred-period */ + /* Decode and display the Preferred-period */ proto_tree_add_item(ti_tree, hf_mac_header_type_1_period, tvb, offset, 3, ENC_BIG_ENDIAN); /* Decode and display the reserved field */ proto_tree_add_item(ti_tree, hf_mac_header_type_1_rsv_7, tvb, offset, 3, ENC_BIG_ENDIAN); diff --git a/plugins/epan/wimax/mac_hd_type2_decoder.c b/plugins/epan/wimax/mac_hd_type2_decoder.c index c9197a3550..8f241d986c 100644 --- a/plugins/epan/wimax/mac_hd_type2_decoder.c +++ b/plugins/epan/wimax/mac_hd_type2_decoder.c @@ -624,7 +624,7 @@ static int dissect_mac_header_type_2_decoder(tvbuff_t *tvb, packet_info *pinfo, /* Decode and display the Long-term precoding feedback */ /* Feedback of index */ proto_tree_add_item(ti_tree, hf_mac_header_type_2_lt_id_fb, tvb, offset, 2, ENC_BIG_ENDIAN); - /* rank of prrecoding codebook */ + /* rank of precoding codebook */ proto_tree_add_item(ti_tree, hf_mac_header_type_2_lt_rank, tvb, offset, 2, ENC_BIG_ENDIAN); /* EFC and QAM feedback */ proto_tree_add_item(ti_tree, hf_mac_header_type_2_lt_fec_qam, tvb, offset, 2, ENC_BIG_ENDIAN); diff --git a/plugins/epan/wimaxasncp/packet-wimaxasncp.c b/plugins/epan/wimaxasncp/packet-wimaxasncp.c index 5632b2fc3d..ced1ceb520 100644 --- a/plugins/epan/wimaxasncp/packet-wimaxasncp.c +++ b/plugins/epan/wimaxasncp/packet-wimaxasncp.c @@ -101,7 +101,7 @@ static expert_field ei_wimaxasncp_length_bad; /* Header size, up to, but not including, the TLV fields. */ #define WIMAXASNCP_HEADER_SIZE 20 -/* Offset to end of the length field in the headder. */ +/* Offset to end of the length field in the header. */ #define WIMAXASNCP_HEADER_LENGTH_END 6 #define WIMAXASNCP_BIT32(n) (1U << (31 - (n))) @@ -402,7 +402,7 @@ static const ver_value_string wimaxasncp_ms_state_msg_vals[] = /* ------------------------------------------------------------------------- */ -/* note - function type 10-im_operation, was once used for re-authrntication */ +/* note - function type 10-im_operation, was once used for re-authentication */ static const ver_value_string wimaxasncp_im_operations_msg_vals[] = { {0, { 1, "AR_EAP_Start"}}, diff --git a/tools/wireshark_words.txt b/tools/wireshark_words.txt index c7abc85ec1..85533e6046 100644 --- a/tools/wireshark_words.txt +++ b/tools/wireshark_words.txt @@ -246,6 +246,7 @@ chan1 chan2 changelog channelisation +channelised channelized channelmap channelseq @@ -528,6 +529,7 @@ dstport dtwin dumpcap duple +duplications durations dword dwords @@ -550,6 +552,7 @@ elided elink ellipsoid emlsr +emulates encap encaps encapsulating @@ -1442,6 +1445,7 @@ reconfigures reconfirm reconfrqst reconnection +recurse recursively redelivered redelivery @@ -1487,6 +1491,7 @@ representable reproducible reprogrammable reprogramming +republish requester requestor requeue @@ -1918,6 +1923,7 @@ unconfirm unconstrained uncontended uncorrectable +uncorrected undecidable undecipherable undecodable @@ -1931,6 +1937,7 @@ underrun undisposed undissected unduplicated +unencoded unencrypted unescaped unescaping @@ -2136,5 +2143,3 @@ zeroes zigbee zugtyp zürich -channelised -uncorrected diff --git a/wiretap/pcapng.c b/wiretap/pcapng.c index 2198f26493..3911dc0206 100644 --- a/wiretap/pcapng.c +++ b/wiretap/pcapng.c @@ -6799,7 +6799,7 @@ static const struct supported_option_type packet_block_options_supported[] = { { OPT_CUSTOM_BIN_NO_COPY, MULTIPLE_OPTIONS_SUPPORTED } }; -/* Options for file-type-sepcific reports. */ +/* Options for file-type-specific reports. */ static const struct supported_option_type ft_specific_report_block_options_supported[] = { { OPT_COMMENT, MULTIPLE_OPTIONS_SUPPORTED }, { OPT_CUSTOM_STR_COPY, MULTIPLE_OPTIONS_SUPPORTED }, @@ -6808,7 +6808,7 @@ static const struct supported_option_type ft_specific_report_block_options_suppo { OPT_CUSTOM_BIN_NO_COPY, MULTIPLE_OPTIONS_SUPPORTED } }; -/* Options for file-type-sepcific event. */ +/* Options for file-type-specific event. */ static const struct supported_option_type ft_specific_event_block_options_supported[] = { { OPT_COMMENT, MULTIPLE_OPTIONS_SUPPORTED }, { OPT_CUSTOM_STR_COPY, MULTIPLE_OPTIONS_SUPPORTED }, diff --git a/wiretap/visual.c b/wiretap/visual.c index 684a6a2e01..4590a8d89f 100644 --- a/wiretap/visual.c +++ b/wiretap/visual.c @@ -96,7 +96,7 @@ struct visual_atm_hdr guint8 category; /* indicates type of traffic. 4 bits of status + 4 bits of type */ guint16 cell_count; /* number of cells that make up this pdu */ guint32 data_length; /* PDU data length for AAL-5 PDUs, all others - cellcount * 48 */ - guint32 ts_secs; /* seonds value of sysUpTime when the last cell of this PDU was captured */ + guint32 ts_secs; /* seconds value of sysUpTime when the last cell of this PDU was captured */ guint32 ts_nsec; /* nanoseonds value of sysUpTime when the last cell of this PDU was captured */ }; diff --git a/wiretap/vwr.c b/wiretap/vwr.c index 251ddf524c..50b50d0657 100644 --- a/wiretap/vwr.c +++ b/wiretap/vwr.c @@ -479,7 +479,7 @@ #define vVW510021_W_PREAMBLE_OFF vVW510021_W_L1P_1_OFF #define vVW510021_W_RSSI_TXPOWER_OFF 2 /* RSSI (NOTE: RSSI must be negated!) */ #define vVW510021_W_MSDU_LENGTH_OFF 3 /* 7:0 of length, next byte 11:8 in top 4 bits */ -#define vVW510021_W_BVCV_VALID_OFF 4 /* BV,CV Determine validaity of bssid and txpower */ +#define vVW510021_W_BVCV_VALID_OFF 4 /* BV,CV Determine validity of bssid and txpower */ #define vVW510021_W_VCID_OFF 6 /* offset of VC (client) ID */ #define vVW510021_W_PLCP_LENGTH_OFF 12 /* LENGTH field in the plcp header */