aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ansi_683.c
AgeCommit message (Collapse)AuthorFilesLines
2011-04-27From Yaniv Kaul:wmeier1-2160/+2156
Some fixes for 'set but not used' errors that GCC 4.6 emits. From me: Remove uneeded #include <stdlib.h>, <gmodule.h>; Do some whitespace cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36902 f5534014-38df-0310-8fa8-9805f1628bb7
2011-04-22Use _U_ for unused function parameters instead of assigning a variablesfisher1-7/+1
to itself. Found by clang compiler. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36813 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-31Use {'0', ...} type initializer for fixed length character arrays.wmeier1-3/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35735 f5534014-38df-0310-8fa8-9805f1628bb7
2011-01-05Remove a break that makes other following statements unreached.morriss1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35388 f5534014-38df-0310-8fa8-9805f1628bb7
2010-12-20Rename the routines that handle dissector tables with unsigned integerguy1-6/+6
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@35224 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-07Squelch a compiler warning.guy1-2/+2
Just make dtmf_digits and bcd_digits arrays; no need for the extra level of indirection. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32413 f5534014-38df-0310-8fa8-9805f1628bb7
2010-04-03Remove unneeded #include <stdio.h>wmeier1-1/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32367 f5534014-38df-0310-8fa8-9805f1628bb7
2010-01-13From Didier Gautheron:etxrab1-4/+1
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31519 f5534014-38df-0310-8fa8-9805f1628bb7
2009-08-21Sanitize epan includeskrj1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29499 f5534014-38df-0310-8fa8-9805f1628bb7
2009-07-30Remove some unused variables.gerald1-27/+0
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29242 f5534014-38df-0310-8fa8-9805f1628bb7
2009-06-18From Kovarththanan Rajaratnam via bug 3548:stig1-5/+5
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28770 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-20From Michael Lum:etxrab1-15/+12
Fixed SPC digit translation https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3213 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27275 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-16Fix some warnings.guy1-43/+41
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27251 f5534014-38df-0310-8fa8-9805f1628bb7
2009-01-16From Michael Lum:etxrab1-291/+3129
Brought up to date with version C of the specification https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3204 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27250 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-31Fix some "format not a string literal and no format arguments" warnings.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26646 f5534014-38df-0310-8fa8-9805f1628bb7
2008-05-11Fix some of the Errors/warnings detected by checkapiwmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25274 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21change a whole bunch of ethereal into wiresharksahlberg1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18196 f5534014-38df-0310-8fa8-9805f1628bb7
2005-07-27Fix >2600 warnings by doing char -> const char changes.jmayer1-31/+31
Additionally in dissectors/packet-ansi_map.c: Flag unused parameters as such and remove dummy param = param; statements. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15114 f5534014-38df-0310-8fa8-9805f1628bb7
2005-06-26Get rid of the private "my_match_strval()" routine in many dissectors;guy1-23/+2
add a "match_strval_idx()" routine that does the same thing, and have "match_strval()" call it. Make those routines, and "val_to_str()", return a "const" pointer. Update dissectors as necessary to squelch compiler warnings produced by that. Use "val_to_str()" rather than using "match_strval()" and then, if the result is null, substituting a specific string. Clean up some other "match_strval()"/"val_to_str()" usages. Add a null pointer check in the NDPS dissector's "attribute_value()" routine, as it's not clear that "global_attribute_name" won't be null at that point. Make some global variables in the AFS4INT dissector local. Make some routines not used outside the module they're in static. Make some tables "static const". Clean up white space. Fix Gerald's address in some files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14786 f5534014-38df-0310-8fa8-9805f1628bb7
2005-06-26packet-ansi_683.c(93) : warning C4090: 'return' : different 'const' qualifiersulfl1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14769 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Move dissectors to epan/dissectors directory.gram1-0/+2093
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11410 f5534014-38df-0310-8fa8-9805f1628bb7