https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6144
Summary: gtk/capture_dlg.c [misplaced comma: old gtk only]
Product: Wireshark
Version: 1.6.1
Platform: Other
OS/Version: All
Status: NEW
Severity: Major
Priority: Low
Component: Wireshark
AssignedTo: bugzilla-admin@xxxxxxxxxxxxx
ReportedBy: aoerneononon@xxxxxxxxx
Build Information:
Old gtk.
--
Wireshark version 1.6.1 has a bug which will only affect those attempting
to install it on old systems (I have an old Fedora Core2 which I use for
some online work). The section in gtk/capture_dlg.c for older versions
(only if 'GTK_CHECK_VERSION(2,12,0)' FAILS) has a misplaced comma in the
section from line 2147 through 2151.
gtk_tooltips_set_tip(tooltips, filter_cm,
"Enter a capture filter to reduce the amount of packets to be captured. "
"See \"Capture Filters\" in the online help for further information how to
use it.", << - ERROR (extra comma)
"Syntax checking can be disabled in Preferences -> Capture -> Syntax check
capture filter." << - ERROR (missing comma)
NULL);
Should be:
gtk_tooltips_set_tip(tooltips, filter_cm,
"Enter a capture filter to reduce the amount of packets to be captured. "
"See \"Capture Filters\" in the online help for further information how to
use it."
"Syntax checking can be disabled in Preferences -> Capture -> Syntax check
capture filter.",
NULL);
(See lines 2141 througn 2145 - the version for later versions of gtk.)
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.