Use buf_eatstring instead

This commit is contained in:
Matt Johnston 2020-12-10 23:18:48 +08:00
parent 38d7da5fe5
commit 5d60e5f312
2 changed files with 2 additions and 6 deletions

View File

@ -408,11 +408,9 @@ void cleantext(char* dirtytext) {
}
static void recv_msg_global_request_cli(void) {
unsigned int len = 0;
unsigned int wantreply = 0;
len = buf_getint(ses.payload);
buf_incrpos(ses.payload, len);
buf_eatstring(ses.payload);
wantreply = buf_getbool(ses.payload);
TRACE(("recv_msg_global_request_cli: want_reply: %u", wantreply));

View File

@ -39,13 +39,11 @@
/* This is better than SSH_MSG_UNIMPLEMENTED */
void recv_msg_global_request_remotetcp() {
unsigned int len = 0;
unsigned int wantreply = 0;
TRACE(("recv_msg_global_request_remotetcp: remote tcp forwarding not compiled in"))
len = buf_getint(ses.payload);
buf_incrpos(ses.payload, len);
buf_eatstring(ses.payload);
wantreply = buf_getbool(ses.payload);
if (wantreply) {
send_msg_request_failure();