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.