Wireshark-commits: [Wireshark-commits] master 452e78b: Fix the type of the packet buffer argument t

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Sun, 30 Sep 2018 21:25:28 +0000
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=452e78bb83410d31fd3cdb3576ddbc592fd46475
Submitter: "Guy Harris <guy@xxxxxxxxxxxx>"
Changed: branch: master
Repository: wireshark

Commits:

452e78b by Guy Harris (guy@xxxxxxxxxxxx):

    Fix the type of the packet buffer argument to a capture dissector.
    
    It's a blob of bytes, so the right type is guint8 *, not guchar *.
    (Yes, in practice, they're both typedefs for "unsigned char" - sadly,
    C's data types didn't make a distinction between "byte-sized integral
    value" and "character" - but given that we have different names, let's
    use them to make it clearer what's being done.)
    
    Change-Id: Idb10a208877c84df0432043d69d4aff5a2b2f803
    Reviewed-on: https://code.wireshark.org/review/29943
    Reviewed-by: Guy Harris <guy@xxxxxxxxxxxx>
    

Actions performed:

    from  e7dec27   Show the *per-file* encapsulation in the __tostring method.
     add  452e78b   Fix the type of the packet buffer argument to a capture dissector.


Summary of changes:
 epan/capture_dissectors.c | 4 ++--
 epan/capture_dissectors.h | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)