tidy-up: miscellaneous

- sha256: fix backend priority in comment.
- URLs: link to IETF URLs to the HTML document, to match others.
- VERSIONS.md: use unified date format for recent entries too.
  Ref: ce5d32032f
- GHA/labeler.yml: alpha-sort file masks in a label block.
- tests/server/mqttd: fix call arg list in a disabled function.
- tests/server/mqttd: fix comment.

Closes #21473
This commit is contained in:
Viktor Szakats 2026-04-29 15:27:37 +02:00
parent ceaa5dfba0
commit 91232fc2a2
No known key found for this signature in database
6 changed files with 14 additions and 14 deletions

View file

@ -245,7 +245,7 @@ static int puback(FILE *dump, curl_socket_t fd, unsigned short packetid)
if(rc == sizeof(packet)) {
logmsg("WROTE %zd bytes [PUBACK]", rc);
loghex(packet, rc);
logprotocol(FROM_SERVER, dump, packet, rc);
logprotocol(FROM_SERVER, "PUBACK", 0, dump, packet, rc);
return 0;
}
logmsg("Failed sending [PUBACK]");
@ -704,7 +704,7 @@ static bool mqttd_incoming(curl_socket_t listenfd)
}
#ifdef HAVE_GETPPID
/* As a last resort, quit if socks5 process becomes orphan. */
/* As a last resort, quit if mqttd process becomes orphan. */
if(getppid() <= 1) {
logmsg("process becomes orphan, exiting");
return FALSE;