Changeset 4de643d
- Timestamp:
- Mar 28, 2009, 6:56:38 PM (16 years ago)
- Branches:
- owl
- Children:
- c34d788
- Parents:
- dab82f29
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zcrypt.c
rdab82f29 r4de643d 402 402 403 403 for (i = 0; i < 8; i++) { 404 sprintf(out , "%s%c", out, ((output[i] & 0xf0) >> 4) + BASE_CODE);405 sprintf(out , "%s%c", out, (output[i] & 0x0f) + BASE_CODE);404 sprintf(out + strlen(out), "%c", ((output[i] & 0xf0) >> 4) + BASE_CODE); 405 sprintf(out + strlen(out), "%c", (output[i] & 0x0f) + BASE_CODE); 406 406 } 407 407
Note: See TracChangeset
for help on using the changeset viewer.