Fix a2051bad: SendCmdNames only sent one name per packet (#9528)

pull/332/head
Patric Stout 3 years ago committed by GitHub
parent 2c05412d72
commit 63116bd59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -594,7 +594,7 @@ NetworkRecvStatus ServerNetworkAdminSocketHandler::SendCmdNames()
/* Should COMPAT_MTU be exceeded, start a new packet
* (magic 5: 1 bool "more data" and one uint16 "command id", one
* byte for string '\0' termination and 1 bool "no more data" */
if (p->CanWriteToPacket(strlen(cmdname) + 5)) {
if (!p->CanWriteToPacket(strlen(cmdname) + 5)) {
p->Send_bool(false);
this->SendPacket(p);

Loading…
Cancel
Save