Wireshark-bugs: [Wireshark-bugs] [Bug 2393] New: E212 Mobile network code 3rd digit is not corre
Date: Fri, 28 Mar 2008 20:40:36 +0000 (GMT)
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.