1
1

Replace : in hexdump with " " (two spaces)

Этот коммит содержится в:
Sofian Brabez 2010-02-01 11:40:11 +01:00 коммит произвёл Peter Stuge
родитель 68a900d27a
Коммит 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++] = ':';