Replace : in hexdump with " " (two spaces)

This commit is contained in:
Sofian Brabez 2010-02-01 11:40:11 +01:00 committed by Peter Stuge
parent 68a900d27a
commit a190437c4a

View File

@ -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++] = ':';