summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-12-03Fix warning: argument 'out/in' of command @param is not found in the ↵Alexis La Goutte1-2/+2
argument list of SE_COPY_ADDRESS(to, from) svn path=/trunk/; revision=53747
2013-12-03Add #pragma to idl generator...Alexis La Goutte1-1/+5
svn path=/trunk/; revision=53746
2013-12-03Move stats_tree_stat.c back to clean files.Jörg Mayer1-2/+1
svn path=/trunk/; revision=53745
2013-12-03Don't allow conversation_data to be NULL. Bug 9493 ↵Michael Mann1-7/+6
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9493) svn path=/trunk/; revision=53744
2013-12-03Remove some no-longer-necessary null pointer checks, as pointed out byGuy Harris1-8/+8
Coverity; dissect_btl2cap() now returns immediately if handed a null private-data pointer. svn path=/trunk/; revision=53743
2013-12-03Clean up indentation.Guy Harris1-1/+1
svn path=/trunk/; revision=53742
2013-12-03Try to fix [-Wmissing-prototypes]Anders Broman7-0/+20
svn path=/trunk/; revision=53741
2013-12-03- copy paste error in parlayAnders Broman3-1/+9
- Add pragmas to remove warnings, this should go into the generation script. svn path=/trunk/; revision=53740
2013-12-02Space between STANAG and the standard number.Guy Harris1-1/+1
svn path=/trunk/; revision=53739
2013-12-02Fix encap_table_base[] array.Jakub Zawadzki2-3/+7
svn path=/trunk/; revision=53738
2013-12-02Reject the packet if data is NULL without doing anything else.Chris Maynard2-17/+9
svn path=/trunk/; revision=53737
2013-12-02Link with -lcodecs on UN*X as well. Link with -lwsutil afterGuy Harris1-1/+1
-lwireshark, -lwiretap, and -lcodecs, just in case the linker requires that, if library A uses something from library B, library B be read after library A. svn path=/trunk/; revision=53736
2013-12-02Reject the packet if data is NULL without doing anything else.Chris Maynard7-20/+35
svn path=/trunk/; revision=53735
2013-12-02No C++/C99 comments, as not all compilers handle them. Use #if 0/#endifGuy Harris1-1/+3
instead. svn path=/trunk/; revision=53734
2013-12-02eject the packet if data is NULL without doing anything else.Chris Maynard3-9/+15
svn path=/trunk/; revision=53733
2013-12-02Reject the packet if data is NULL without doing anything else.Chris Maynard1-3/+5
svn path=/trunk/; revision=53732
2013-12-02Character conversion error.Anders Broman2-2/+2
svn path=/trunk/; revision=53731
2013-12-02Add pragmas to remove warnings, this should go into the generation script.Anders Broman2-1/+8
svn path=/trunk/; revision=53730
2013-12-02Explicitly convert an int to an enum.Guy Harris1-1/+1
svn path=/trunk/; revision=53729
2013-12-02Specify SI units for the max filesize autostop condition. For now, keep the ↵Chris Maynard7-52/+52
capture buffer size in IEC units, but document it as such. #BACKPORT(1.10, 1.8(?)) svn path=/trunk/; revision=53728
2013-12-02Make the declaration of stats_tree_format_node_as_str() match theGuy Harris1-1/+1
definition. svn path=/trunk/; revision=53727
2013-12-02Use g_strlcpy() and g_strlcat() to squelch API checker warnings.Guy Harris1-4/+6
svn path=/trunk/; revision=53726
2013-12-02Use ws_fopen() so we properly handle UTF-8 file names on Windows.Guy Harris1-1/+2
svn path=/trunk/; revision=53725
2013-12-02stats_tree_stat.c currently procudes warnings - move to dirtyJörg Mayer1-1/+6
svn path=/trunk/; revision=53724
2013-12-02Fix (-W)documentation error found by ClangAlexis La Goutte1-4/+4
parameter 'sai' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53723
2013-12-02Fix (-W)documentation error found by ClangAlexis La Goutte1-4/+4
error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53722
2013-12-02Fix (-W)documentation error found by ClangAlexis La Goutte1-1/+1
../../epan/strutil.h:95:11: error: parameter 'line' not found in the function declaration [-Werror,-Wdocumentation] * @param line A pointer to the input string ^~~~ ../../epan/strutil.h:95:11: note: did you mean 'string'? * @param line A pointer to the input string ^~~~ string svn path=/trunk/; revision=53721
2013-12-02Fix (-W)documentation error found by ClangAlexis La Goutte1-28/+28
error: parameter 'addr*[in]' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53720
2013-12-02Fix (-W)documentation error found by ClangAlexis La Goutte1-2/+2
error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53719
2013-12-02nmake: Allow setting the wireshark base dir via env variableJörg Mayer1-0/+4
svn path=/trunk/; revision=53718
2013-12-02Remove /msvc2010 after ${QT5_BASE_DIR}, it should be part ofJörg Mayer2-2/+3
the QT5_BASE_DIR value. svn path=/trunk/; revision=53717
2013-12-02Get rid of a stray semicolon, as it upsets Sun^WOracle Studio's CGuy Harris1-3/+2
compiler. Clean up escape_xml_chars() a bit, so that there's no extra unreached "return s;", and so that it's clearer that it runs until it hits a NUL. (XXX - are there GLib routines that will do this?) svn path=/trunk/; revision=53716
2013-12-02Don't include wslua headers if we don't have Lua.Guy Harris1-0/+2
svn path=/trunk/; revision=53715
2013-12-02Don't assume we have Lua just because we have plugin support.Guy Harris1-2/+6
svn path=/trunk/; revision=53714
2013-12-02We need to link with the codecs library.Guy Harris1-1/+1
svn path=/trunk/; revision=53713
2013-12-02Make the declaration of stats_tree_format_as_str() match the definition.Guy Harris1-1/+1
svn path=/trunk/; revision=53712
2013-12-02Do something less catastrophic than crashing if the same name is used inGuy Harris2-6/+6
two codec registrations. svn path=/trunk/; revision=53711
2013-12-02Move most of the plugin code from epan to wsutil and remove allGuy Harris39-761/+1038
knowledge of particular types of plugins. Instead, let particular types of plugins register with the common plugin code, giving a name and a routine to recognize that type of plugin. In particular applications, only process the relevant plugin types. Add a Makefile.common to the codecs directory. svn path=/trunk/; revision=53710
2013-12-02Reject the packet if data is NULL.Chris Maynard1-0/+3
svn path=/trunk/; revision=53709
2013-12-02Reject the packet if data is NULL without doing anything else.Chris Maynard2-14/+10
svn path=/trunk/; revision=53708
2013-12-02Reject the packet if data is NULL.Chris Maynard1-7/+9
svn path=/trunk/; revision=53707
2013-12-02If data is NULL, the bug, if any, is not with *this* dissector, but with ↵Chris Maynard2-20/+14
whichever one failed to pass the data properly. svn path=/trunk/; revision=53706
2013-12-02Fix Coverity CID 1134045: Printf format string issue. (As documented in the ↵Chris Maynard1-1/+1
printf man page for the ' option, "Note that many versions of gcc(1) cannot parse this option and will issue a warning." (r47940 reverted a similar change, so this keeps things consistent.) svn path=/trunk/; revision=53705
2013-12-02Fix Coverity CID 1134046: Structurally dead code.Chris Maynard1-1/+2
svn path=/trunk/; revision=53704
2013-12-01The changes to work around the msbuild deficiencies brokeJörg Mayer1-2/+4
dependeny tracking (replaced the list of dissectors by the file containing the dissectors). Fix that. svn path=/trunk/; revision=53703
2013-12-01Copy over rev 53700 to cmakeJörg Mayer1-2/+2
svn path=/trunk/; revision=53702
2013-12-01Small style changes.Jörg Mayer1-6/+6
svn path=/trunk/; revision=53701
2013-12-01Update to V11.7.1 (2013-09)Anders Broman6-178/+2195
svn path=/trunk/; revision=53700
2013-12-01If we're including "config.h" when compiling a codec, then /I.. must be ↵Bill Meier1-1/+1
part of CFLAGS. svn path=/trunk/; revision=53699
2013-12-01Patch to include YAML export. Bug 9452 ↵Michael Mann4-24/+65
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9452) From Deon van der Westhuysen From me: use switch statements instead of if-else svn path=/trunk/; revision=53698