Changeset 122 for branches/samba-3.0


Ignore:
Timestamp:
Feb 18, 2008, 9:30:36 AM (17 years ago)
Author:
Paul Smedley
Message:

fromhex fix from Vitali

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.0/source/ndpsmb/ndpsmb.c

    r121 r122  
    386386    if ('A' <= c && c <= 'F')
    387387    {
    388          return c - 'A';
     388         return c - 'A' + 0xA;
    389389    }
    390390   
    391391    if ('a' <= c && c <= 'f')
    392392    {
    393          return c - 'a';
     393         return c - 'a' + 0xA;
    394394    }
    395395   
Note: See TracChangeset for help on using the changeset viewer.