Changeset 122 for branches/samba-3.0
- Timestamp:
- Feb 18, 2008, 9:30:36 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.0/source/ndpsmb/ndpsmb.c
r121 r122 386 386 if ('A' <= c && c <= 'F') 387 387 { 388 return c - 'A' ;388 return c - 'A' + 0xA; 389 389 } 390 390 391 391 if ('a' <= c && c <= 'f') 392 392 { 393 return c - 'a' ;393 return c - 'a' + 0xA; 394 394 } 395 395
Note:
See TracChangeset
for help on using the changeset viewer.