Replace : in hexdump with " " (two spaces)
This commit is contained in:
parent
68a900d27a
commit
a190437c4a
@ -90,7 +90,9 @@ debugdump(LIBSSH2_SESSION * session,
|
||||
buffer[used++] = ' ';
|
||||
}
|
||||
|
||||
buffer[used++] = (c == (width/2)-1) ? ':' : ' ';
|
||||
buffer[used++] = ' ';
|
||||
if ((width/2) - 1 == c)
|
||||
buffer[used++] = ' ';
|
||||
}
|
||||
|
||||
buffer[used++] = ':';
|
||||
|
Loading…
Reference in New Issue
Block a user