ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 7265] Cascade Pilot PE - Send to Wireshark Issue

Date: Wed, 30 May 2012 15:23:30 -0700 (PDT)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7265

Jakub Zawadzki <darkjames-ws@xxxxxxxxxxxx> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |darkjames-ws@xxxxxxxxxxxx

--- Comment #3 from Jakub Zawadzki <darkjames-ws@xxxxxxxxxxxx> 2012-05-30 15:23:29 PDT ---
Hi,

(In reply to comment #2)
> I've checked in a fix for the problem in r42930.

Gerald, in C expression:
  prefs.console_log_level & G_LOG_LEVEL_INFO|G_LOG_LEVEL_DEBUG

AFAIK will be evaluated like:
  (prefs.console_log_level & G_LOG_LEVEL_INFO) | G_LOG_LEVEL_DEBUG

(in r42930 if-statemet always true)

I think it should be:
  prefs.console_log_level & (G_LOG_LEVEL_INFO|G_LOG_LEVEL_DEBUG)

But I don't have Pilot so I can't test if it still works with such patch.

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.