_libssh2_packet_add: fix SSH_MSG_DEBUG weirdness
I believe I may have caused this weird typo style error when I cleaned up this function a while ago. Corrected now.
This commit is contained in:
parent
121237ce2f
commit
2165ceacd3
@ -531,7 +531,7 @@ _libssh2_packet_add(LIBSSH2_SESSION * session, unsigned char *data,
|
||||
|
||||
case SSH_MSG_DEBUG:
|
||||
if(datalen >= 2) {
|
||||
int always_display=always_display = data[1];
|
||||
int always_display= data[1];
|
||||
|
||||
if(datalen >= 6) {
|
||||
message_len = _libssh2_ntohu32(data + 2);
|
||||
|
Loading…
x
Reference in New Issue
Block a user