https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6151
Summary: a patch to fix the wrong display of CSN_BIT
Product: Wireshark
Version: SVN
Platform: Other
OS/Version: Windows XP
Status: NEW
Severity: Major
Priority: Low
Component: Wireshark
AssignedTo: bugzilla-admin@xxxxxxxxxxxxx
ReportedBy: alpha_cl@xxxxxxxx
Build Information:
Paste the COMPLETE build information from "Help->About Wireshark", "wireshark
-v", or "tshark -v".
--
CSN_BIT's name will mess up. For example:
static const
CSN_DESCR_BEGIN(GPRS_Cell_Options_t)
M_UINT (GPRS_Cell_Options_t, NMO, 2, &hf_gprs_cell_options_nmo),
M_UINT_OFFSET(GPRS_Cell_Options_t, T3168, 3, 1),
M_UINT_OFFSET(GPRS_Cell_Options_t, T3192, 3, 1),
M_UINT (GPRS_Cell_Options_t, DRX_TIMER_MAX, 3,
&hf_gprs_cell_options_drx_timer_max),
M_BIT (GPRS_Cell_Options_t, ACCESS_BURST_TYPE,
&hf_gprs_cell_options_access_burst_type),
M_BIT (GPRS_Cell_Options_t, CONTROL_ACK_TYPE,
&hf_gprs_cell_options_control_ack_type),
M_UINT (GPRS_Cell_Options_t, BS_CV_MAX, 4,
&hf_gprs_cell_options_bs_cv_max),
......
CSN_DESCR_END (GPRS_Cell_Options_t)
'ACCESS_BURST_TYPE' will be missing, and 'CONTROL_ACK_TYPE' will show at the
positioin where 'ACCESS_BURST_TYPE' should be.
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.