http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2393
Summary: E212 Mobile network code 3rd digit is not correctly
decoded
Product: Wireshark
Version: SVN
Platform: PC
OS/Version: Windows 2000
Status: NEW
Severity: Major
Priority: Low
Component: Wireshark
AssignedTo: wireshark-bugs@xxxxxxxxxxxxx
ReportedBy: sunyin51@xxxxxxxxx
Build Information:
N/A
--
in packet-e212.c
function dissect_e212_mcc_mnc
line 309
308 if (mnc3 != 0xf) {
309 mnc += 10 * mnc + mnc3;
310 }
mnc is added twice.
the correction should be
309 mnc = 10 * mnc + mnc3;
--
Configure bugmail: http://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.