aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-idrp.c
AgeCommit message (Collapse)AuthorFilesLines
2014-08-10Eliminate proto_tree_add_text from some dissectors.Michael Mann1-4/+16
Other minor cleanup while in the neighborhood. Change-Id: Ib76f4a9f89b5933425760af0a980c6a549031b8f Reviewed-on: https://code.wireshark.org/review/3537 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-06-29proto_tree_add_subtree[_format]Michael Mann1-3/+1
Change-Id: I7e016f10fcfdc0523bf2fe8c11295c0334f7c332 Reviewed-on: https://code.wireshark.org/review/2694 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-12-13Do one or more of the following:Bill Meier1-190/+209
- Convert "4 space tabs" to spaces; - Remove some unneeded initializers; - 'offset++' --> 'offset += 1' for consistency; - Reformat hf[] entries; - Rework/add whitespace; - Adjust editor modelines (set tab-width to 8). svn path=/trunk/; revision=54005
2013-12-07From Mathias Guettler via ↵Pascal Quantin1-2/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9523 : Fix ISO 10747 (IDRP) incorrect handling of data in IDRP ERROR PDU's svn path=/trunk/; revision=53824
2013-12-04- Make local functions static.Anders Broman1-4/+6
- Forward declaration of register function. svn path=/trunk/; revision=53786
2013-11-22Fix unused-const-variable error when build with clang 3.4Alexis La Goutte1-0/+2
svn path=/trunk/; revision=53511
2013-04-23oops, missed a linebreakMartin Kaiser1-1/+2
svn path=/trunk/; revision=49003
2013-04-23From Mathias GuettlerMartin Kaiser1-0/+1584
dissector for ISO 10747 Inter Domain Routing Protocol https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8562 from me: check for negative return value of tvb_reported_length_remaining() remove unused hf entries add modelines don't initialise variables unless it's necessary make idrp a new-style dissector svn path=/trunk/; revision=49002