Wireshark-commits: [Wireshark-commits] master e6fcff1: Use g_ascii_isalnum() rather than isalnum().

From: Wireshark code review <code-review-do-not-reply@xxxxxxxxxxxxx>
Date: Thu, 16 Oct 2014 23:47:01 +0000 (UTC)
URL: https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=e6fcff1eb62b581eb7fb3d7af1d2e38612a00b30
Submitter: Guy Harris (guy@xxxxxxxxxxxx)
Changed: branch: master
Repository: wireshark

Commits:

e6fcff1 by Guy Harris (guy@xxxxxxxxxxxx):

    Use g_ascii_isalnum() rather than isalnum().
    
    That way, we don't have to worry about casting the argument (which, in
    one place, was done wrong - casting to int preserves the sign-extension
    done with signed chars), and don't have to worry about a locale in which
    particular 8-bit byte values are considered alphanumeric characters.
    
    Change-Id: I129b4bfdad70ade4ab6e0a1d2c13d59ae9e6f524
    Reviewed-on: https://code.wireshark.org/review/4751
    Reviewed-by: Guy Harris <guy@xxxxxxxxxxxx>
    

Actions performed:

    from  f249589   Just have get_mac_lte_rapid_description() return the description string.
    adds  e6fcff1   Use g_ascii_isalnum() rather than isalnum().


Summary of changes:
 epan/dfilter/dfilter-macro.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)