Changeset 122

Show
Ignore:
Timestamp:
02/18/08 09:30:36 (10 months ago)
Author:
psmedley
Message:

fromhex fix from Vitali

Files:
1 modified

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