aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate
AgeCommit message (Collapse)AuthorFilesLines
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45015
2012-07-09From Evan Huus:Anders Broman1-6/+0
Grab-bag of unused variables. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7452 svn path=/trunk/; revision=43616
2012-06-28Update FSF address - part II.Jakub Zawadzki8-9/+9
svn path=/trunk/; revision=43538
2012-06-28Update Free Software Foundation address.Jakub Zawadzki3-3/+3
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-13Create, and start using, file name preferences.Jeff Morriss1-4/+4
File name preferences are basically just string preferences except that the GUI will present a "Browse" button that allows the user to go and find the file s/he wants (rather than having to blindly type in the full path). svn path=/trunk/; revision=43228
2012-06-05Fix Coverity 702421: Handle the possibility that fvalue_to_string_repr()Jeff Morriss1-1/+6
may return NULL. svn path=/trunk/; revision=43114
2012-06-01Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt if ↵Bill Meier1-1/+1
Makefile.common is changed svn path=/trunk/; revision=42972
2012-06-01Windows: Set Makefile.common as a plugin.c dependency so plugin.c is rebuilt ↵Bill Meier1-2/+2
if Makefile.common is changed ToDo: ditto for Makefile.am ? svn path=/trunk/; revision=42971
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=42053
2012-04-04Add a "-build" argument to checkAPIs.pl. Use that argument when buildingJeff Morriss2-2/+2
from makefiles (and thus from the buildbot). The intention is to be able to tell when a human is running the tool so we can provide more code-review guidance. As a starter, enable the "too many proto_tree_add_text() calls" check when a human is running the tool. svn path=/trunk/; revision=41943
2012-02-24CVARSDLL hasn't been used (is undefined) for a while....Bill Meier1-1/+1
svn path=/trunk/; revision=41180
2012-01-29Add *.sbr files to the clean target.Anders Broman1-1/+1
svn path=/trunk/; revision=40761
2012-01-16Use GSlice API instead of GMemChunk API for some memory allocation.Bill Meier4-97/+47
svn path=/trunk/; revision=40547
2012-01-16Fix a typo in an error message.Bill Meier1-1/+1
svn path=/trunk/; revision=40546
2011-08-08Add a comment about the uncommented glib deprecated warnings.Jörg Mayer1-0/+3
svn path=/trunk/; revision=38403
2011-08-07mate_grammar.lemon:Jörg Mayer3-3/+5
- Fix a bug my previous patch introduced. mate/: - Unset G_DISABLE_DEPRECATED for the mate files. CMakeLists.txt configure.in: - Build with -DG_DISABLE_DEPRECATED so further usage of deprecated glib functions will be detected. svn path=/trunk/; revision=38393
2011-08-07Replace deprecated glib functions.Jörg Mayer1-1/+1
In order to compile the whole project with -DG_DISABLE_DEPRECATED the mate plugin needs to replace its usage of GMemChunk. All other places should be clean. svn path=/trunk/; revision=38392
2011-06-28Replace all strerror() with g_strerror().Stig Bjørlykke1-2/+2
Remove our local strerror implementation. Mark strerror as locale unsafe API. This fixes bug 5715. svn path=/trunk/; revision=37812
2011-05-19Don't assign a value to a variable which is then never used: Coverity 1160 ↵Bill Meier1-4/+4
[UNUSED] svn path=/trunk/; revision=37290
2011-05-19Fix another old style function declaration warningJörg Mayer1-1/+1
svn path=/trunk/; revision=37281
2011-04-25More fun with GArrays: cast away some warnings that don't report realGuy Harris1-2/+2
alignment problems and that wouldn't even happen if the "data" member of a GArray were a "void *". svn path=/trunk/; revision=36855
2011-04-22Fix (latest) Dead Store (Dead nested assignment) Warning found by ClangAlexis La Goutte1-3/+2
svn path=/trunk/; revision=36802
2011-04-21Fix Dead Store (Dead nested assignment) Warning found by Clang Alexis La Goutte1-1/+1
svn path=/trunk/; revision=36756
2011-03-29Added FALLTHRU comment to avoid a "missing break" warning.Anders Broman1-0/+1
CID 489 svn path=/trunk/; revision=36400
2011-03-28Don't use prohibited strncpy(). Use g_strlcpy() instead. Ensures that "orig"Chris Maynard1-2/+2
will be NULL-terminated, even if len >= SCS_HUGE_SIZE. svn path=/trunk/; revision=36383
2011-03-27Removed uneeded 'continue'.Bill Meier1-1/+0
Fixes Coverity 815 ("UNREACHABLE"). svn path=/trunk/; revision=36367
2011-03-22Allocate correct size of range.Stig Bjørlykke1-2/+2
Coverity 718. svn path=/trunk/; revision=36262
2011-03-22Coverity 420Ronnie Sahlberg1-7/+4
Remove dead code and add a g_assert_not_reached() at a spot we can definitely never reach. change a if(x)g_free(x) to a g_free(x) since g_free(NULL) is just a nop. svn path=/trunk/; revision=36238
2011-03-21Added some casts to fix coverity 325.Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=36228
2011-02-02A bit of Windows makefiles rework and cleanup:Bill Meier1-3/+6
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
2011-01-30Whitespace cleanup (remove trailing blanks from lines).Bill Meier3-182/+182
svn path=/trunk/; revision=35711
2011-01-30Add a comment about some "unreachable code" indicating possible incorrect ↵Bill Meier1-230/+230
code someplace. Fix some spelling.. svn path=/trunk/; revision=35710
2010-09-24Plugins are not shared libraries, so:Guy Harris1-1/+0
1) don't set thei SOVERSION - run-time-loaded modules don't have an SOVERSION; 2) build them with link mode MODULE, not SHARED, on all platforms. (Fixing 1) also fixes the problem with building them as MODULE on OS X.) svn path=/trunk/; revision=34243
2010-09-23H. Sivank <hsivank@gmail.com>Jörg Mayer1-1/+1
I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201
2010-05-14Add Cmake stuff to the source distribution so more people can try it out.Jeff Morriss1-7/+8
svn path=/trunk/; revision=32807
2010-04-14Be sure we initialize the p_id in hf's. This fixesJeff Morriss3-20/+28
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3010 . Also finish the implementation of ShowTimes for GOGs so that the variable gets initialized (preventing another uninitialized variable warning from Valgrind). svn path=/trunk/; revision=32465
2010-04-14Fix up MATE's hf display values so MATE will actually run.Jeff Morriss1-6/+8
svn path=/trunk/; revision=32464
2010-03-18cmake changes:Jörg Mayer1-2/+3
- Add checking for linker flags - Install plugins with the name including the Wireshark version. This will make it easier to find matching plugin versions if files get just copied over. svn path=/trunk/; revision=32231
2010-02-24- Remove the lib prefix for plugin names.Jörg Mayer1-4/+2
- Remove a (resolved) comment. - Add a commented out line how to add version infos to the plugin's file name. svn path=/trunk/; revision=31995
2010-01-28Fix some gcc -Wshadow warnings.Bill Meier2-21/+21
svn path=/trunk/; revision=31722
2009-11-17Beginnings of enabling static builds. Still to do:Jörg Mayer1-1/+1
* Add -static * Registration may need different handling * Add plugins * Build error in wslua svn path=/trunk/; revision=30987
2009-11-07cmake will now honor -Werror if configured (default: on)Jörg Mayer1-7/+21
svn path=/trunk/; revision=30852
2009-10-19Removed redundant redeclaration of delete_avpl().Stig Bjørlykke1-6/+0
svn path=/trunk/; revision=30618
2009-10-09Use register_dissector_files in the plugins dissectorsKovarththanan Rajaratnam1-25/+3
svn path=/trunk/; revision=30435
2009-10-06Build plugins with cmake on OSX.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=30373
2009-09-25Fix build of make and asn1 plugins.Jörg Mayer1-6/+6
svn path=/trunk/; revision=30144
2009-09-21CMake:Jörg Mayer1-0/+6
- Add opcua to the list of plugins to build - Link the gtk stuff statically into wireshark - Beginnings of "make install" - Change a few things about install paths svn path=/trunk/; revision=30029
2009-09-16Build a few more pluginsJörg Mayer1-0/+88
svn path=/trunk/; revision=29942
2009-09-13Run checkapi on the dissector header filesJeff Morriss2-2/+2
svn path=/trunk/; revision=29883
2009-09-09We no longer support the old plugin API so remove it completely from the ↵Kovarththanan Rajaratnam1-1/+1
build system svn path=/trunk/; revision=29821