aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Dmitriev <igor.dmitriev@eke.fi>2023-02-27 21:06:35 +0200
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2023-03-08 09:58:43 +0000
commit212cec9f7b6e77475e62562153faa3806711fa79 (patch)
treec925d9c1def940bcc08692efc2eae194e3716d07
parent649b20cb44237c0c1bff564f06d9af83652bb935 (diff)
TRDP: Fixed typo and indentation in packet-trdp.c
-rw-r--r--epan/dissectors/packet-trdp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-trdp.c b/epan/dissectors/packet-trdp.c
index 32bebd3bdb..116a442392 100644
--- a/epan/dissectors/packet-trdp.c
+++ b/epan/dissectors/packet-trdp.c
@@ -120,7 +120,7 @@ static const value_string reply_status_names[] = {
static inline int is_pd(guint16 msgtype)
{
- return (msgtype & 0xff00) == 0x5000; // 'P'
+ return (msgtype & 0xff00) == 0x5000; // 'P'
}
static int dissect_trdp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
@@ -222,7 +222,7 @@ void proto_register_trdp(void)
{ "Reserved", "trdp.res", FT_UINT32, BASE_DEC, NULL, 0, NULL, HFILL }
},
{ &hf_trdp_reply_comid,
- { "Reply Communication Identitier", "trdp.reply_comid", FT_UINT32, BASE_DEC, VALS(comid_names), 0, NULL, HFILL }
+ { "Reply Communication Identifier", "trdp.reply_comid", FT_UINT32, BASE_DEC, VALS(comid_names), 0, NULL, HFILL }
},
{ &hf_trdp_reply_ipaddr,
{ "Reply IP address", "trdp.reply_ipaddr", FT_IPv4, BASE_NONE, NULL, 0, NULL, HFILL }