ws: fix CONT opcode check

Detected by Coverity. Follow-up to 930c00c259

Closes #11037
This commit is contained in:
Daniel Stenberg 2023-04-27 09:30:55 +02:00
parent 9f241a85dc
commit bb0b245cc1
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -353,7 +353,8 @@ static void ws_enc_info(struct ws_encoder *enc, struct Curl_easy *data,
{
infof(data, "WS-ENC: %s [%s%s%s payload=%zd/%zd]", msg,
ws_frame_name_of_op(enc->firstbyte),
(enc->firstbyte & WSBIT_OPCODE_CONT)? " CONT" : "",
(enc->firstbyte & WSBIT_OPCODE_MASK) == WSBIT_OPCODE_CONT ?
" CONT" : "",
(enc->firstbyte & WSBIT_FIN)? "" : " NON-FIN",
enc->payload_len - enc->payload_remain, enc->payload_len);
}