Small hex fix

This commit is contained in:
Michiel Broek 2003-05-12 19:11:19 +00:00
parent cfbe03bde1
commit d1eb31dceb

View File

@ -261,8 +261,9 @@ char *binkp2unix(char *fn)
while (*p) {
if (p[0] == '\\') {
p++;
hex[0] = *p++;
hex[1] = *p++;
hex[1] = *p;
hex[2] = '\0';
Syslog('b', "binkp2unix hex=%s", hex);
sscanf(hex, "%2x", &c);