aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dlm3.c
AgeCommit message (Collapse)AuthorFilesLines
2011-05-23From Micheal Mann via bug 2794: Fix some display filter field names.Chris Maynard1-4/+4
svn path=/trunk/; revision=37351
2011-05-18Don't assign to an unused 'proto_item *': Fixes Coverity 883 [UNUSED];Bill Meier1-10/+7
Use correct 'tree' arg in a dissect(...) fcn call: Fixes Coverity 884 [UNUSED]; #include <stdlib.h> not req'd. svn path=/trunk/; revision=37268
2011-01-27From Masatake YAMATO: Updating value_string for dlm3.m.resultBill Meier1-0/+15
... some values are added to value_string table for dlm3.m.result. It reflects the latest dlm code in linux kernel. See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5623 svn path=/trunk/; revision=35678
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-4/+4
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.) svn path=/trunk/; revision=35224
2010-04-06#include <string.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32410
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2009-09-23Don't col_clear() followed by col_set_str(). A col_set_str() will clear ↵Kovarththanan Rajaratnam1-1/+0
(replace) any existing string (the fence still needs to be respected though) svn path=/trunk/; revision=30086
2009-09-06Don't pass ep_alloc()'ed strings to col_set_str().Kovarththanan Rajaratnam1-1/+1
Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3984 svn path=/trunk/; revision=29726
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29344
2009-08-09Don't guard col_set_str (COL_INFO) with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29342
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-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 svn path=/trunk/; revision=28770
2008-12-18Fix various typos and spelling errors (mostly in text strings)Bill Meier1-2/+2
svn path=/trunk/; revision=27050
2008-09-30Minor cleanup related to proto_register, proto_reg_handoffBill Meier1-10/+7
svn path=/trunk/; revision=26307
2008-06-27Fix some warnings reported by gcc -Wshadow ... Bill Meier1-3/+3
Fix some spacing in packet-dcom.c svn path=/trunk/; revision=25618
2008-03-15From http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1539 :Jeff Morriss1-51/+51
Hexadecimal and octal are unsigned. Don't let dissectors register signed fields (FT_INT*) to be displayed in hexadecimal (including HEX_DEC and DEC_HEX) or octal. Fix dissectors that do that mostly by changing the fields to unsigned though in PANA it appears the fields are meant to be signed so change those fields to be displayed in decimal. This fixes an assertion crash in hfinfo_numeric_format() if/when someone tries to create a filter using one of these mixed signed/unsigned fields (because that routine does not know how to present the user with a signed value in hex). Also add FT_*INT64 to the "make sure it's not BASE_NONE" check. svn path=/trunk/; revision=24643
2007-12-10uint16_t -> guint16Stig Bjørlykke1-2/+2
uint32_t -> guint32 svn path=/trunk/; revision=23835
2007-12-10From Masatake YAMATO:Jaap Keuter1-0/+1268
This dissector supports version 3.0 of the dlm (Distributed Lock Manager) protocol. Actual implementation for the protocol is in linux kernel. See files under linux/fs/dlm/. svn path=/trunk/; revision=23828