dvb-ci: (trivial) fix two comments

fix the wording in one place, remove an obsolete comment nearby

Change-Id: I1df9078366f460cd8a3cbe00f96806c97b05f8a0
Reviewed-on: https://code.wireshark.org/review/37415
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Petri-Dish: Martin Kaiser <wireshark@kaiser.cx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
This commit is contained in:
Martin Kaiser 2020-06-09 22:34:35 +02:00 committed by Jaap Keuter
parent 6219f82390
commit 440e1d4322
1 changed files with 1 additions and 2 deletions

View File

@ -3493,7 +3493,7 @@ dissect_dvbci_payload_cc(guint32 tag, gint len_field _U_,
proto_tree_add_item(tree, hf_dvbci_capability_field,
tvb, offset, 1 , ENC_BIG_ENDIAN);
offset++;
/* we can't packet_mpeg_sect_mjd_to_utc_time()
/* we can't call packet_mpeg_sect_mjd_to_utc_time()
and check with nstime_is_zero() */
if (tvb_get_ntoh40(tvb, offset) == 0) {
proto_tree_add_expert(tree, pinfo, &ei_dvbci_cc_pin_nvr_chg,
@ -3506,7 +3506,6 @@ dissect_dvbci_payload_cc(guint32 tag, gint len_field _U_,
break;
}
else {
/* abs_time_to_ep_str() never returns NULL */
proto_tree_add_time(tree, hf_dvbci_pin_chg_time,
tvb, offset, UTC_TIME_LEN, &utc_time);
}