aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-nfs.c
AgeCommit message (Expand)AuthorFilesLines
2012-04-30Try to fix some Logic error (Function call argument is an uninitialized value...Alexis La Goutte1-23/+23
2012-04-27Like r42302 but in other place.Jakub Zawadzki1-2/+3
2012-04-27Fix fuzz failure reported in Jeff Morriss1-2/+3
2012-04-27From Evan Huus:Anders Broman1-0/+12
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-1/+1
2012-04-09Add missing const attribute to some char *Jakub Zawadzki1-1/+1
2012-03-30From Weston Andros Adamson via https://bugs.wireshark.org/bugzilla/show_bug.c...Jeff Morriss1-3/+9
2012-03-18From Reinhard Speyerer: Fix several misspellings/typos in WiresharkBill Meier1-1/+1
2012-03-08From Weston Andros Adamson via https://bugs.wireshark.org/bugzilla/show_bug.c...Jeff Morriss1-33/+30
2011-12-28Fix memory leaks involving tvb_get_string[z]().Chris Maynard1-0/+3
2011-12-15In certain cases, don't reference a tvb when displaying a hidden,generated fi...Bill Meier1-11/+10
2011-12-14Fix a tvb memory leak;Bill Meier1-17/+34
2011-11-14Append each op name to the operations sub-tree so you don't necessarily have ...Chris Maynard1-0/+2
2011-11-08In the unlikely case that there are no ops, don't append anything. Also, com...Chris Maynard1-3/+5
2011-11-01Remove comma at the end of several enumerator lists.Jeff Morriss1-2/+2
2011-10-28Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-6/+14
2011-10-27Fix some proto_tree_add_item() encoding args;Bill Meier1-8/+7
2011-10-24Fix encoding arg for various fcn calls:Bill Meier1-1/+1
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in non-au...Bill Meier1-3/+3
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly referen...Bill Meier1-10/+10
2011-08-31Second try to move crc routines to libwsutil.Stig Bjørlykke1-4/+3
2011-08-30Revert r38800, as the crc routines contains some tvb functions.Stig Bjørlykke1-2/+2
2011-08-30Move all crc routines to libwsutil.Stig Bjørlykke1-2/+2
2011-08-02From Jeremy Jones:Anders Broman1-40/+142
2011-07-15Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings.Bill Meier1-6/+4
2011-04-18Removed some unneeded assignments.Stig Bjørlykke1-2/+2
2011-04-08Don't assign to a proto_item * if the value won't be used: Coverity 990;Bill Meier1-39/+39
2011-03-31Use correct length for clientaddr4 callback address entry.Stig Bjørlykke1-2/+2
2011-03-30remove some assignments we dont useRonnie Sahlberg1-11/+11
2011-03-22Coverity 989Ronnie Sahlberg1-24/+24
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-10/+10
2010-11-04Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-69/+79
2010-10-10Define some fcns & vars as static ...Bill Meier1-10/+10
2010-09-23Replace blurbs that match the name (case insensitive) with NULL.Jeff Morriss1-2/+2
2010-09-21As suggested by Kovarththanan Rajaratnam in https://bugs.wireshark.org/bugzil...Jeff Morriss1-19/+19
2010-09-17Remove check_col(). Clean up some spacing/indentation too.Jeff Morriss1-584/+416
2010-09-17From Cal Turney via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5197 :Jeff Morriss1-69/+360
2010-09-14From Cal Turney via bug 5209:Gerald Combs1-10/+8
2010-07-21From Alex Burlyga: Make hf_nfs_slotid4 useful again.Bill Meier1-3/+12
2010-07-20Initialize a variable. Fixes bug 5026.Gerald Combs1-2/+4
2010-07-19Use sscanf() to parse clientaddr4 instead of trying to parse itGerald Combs1-45/+21
2010-07-09From Ian Schorr: "NFSv4 COMMIT Calls not decoding" Bill Meier1-3/+2
2010-07-06Limit the number of operations to 128 (arbitrary number) to keep us from atte...Jeff Morriss1-96/+112
2010-07-06Use G_GINT64_CONSTANT() to make a 64-bit all-bits-set constant.Guy Harris1-2/+2
2010-07-06No need to add a fake field with the opcode as a string - you can justGuy Harris1-25/+0
2010-07-06Try checking for G_MAXUINT64 instead of 0xffffffffffffffff.Stig Bjørlykke1-2/+2
2010-07-06Fix the build on OSX.Stig Bjørlykke1-4/+4
2010-07-06Fix:Anders Broman1-3/+1
2010-07-06Fix "checked api failed"Anders Broman1-4/+4
2010-07-06From Ian Schorr:Anders Broman1-113/+484