From: James Jones Date: Mon, 12 Sep 2022 23:39:06 +0000 (-0500) Subject: Consistently use bracket, not brace, for annotations (CID #1448182) (#4704) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a77235b88029be8ff6d05cb66cabf5bbad7f0400;p=thirdparty%2Ffreeradius-server.git Consistently use bracket, not brace, for annotations (CID #1448182) (#4704) Typo --- diff --git a/src/listen/dhcpv6/proto_dhcpv6.c b/src/listen/dhcpv6/proto_dhcpv6.c index b7719c57fd5..4257b6dbfce 100644 --- a/src/listen/dhcpv6/proto_dhcpv6.c +++ b/src/listen/dhcpv6/proto_dhcpv6.c @@ -334,7 +334,7 @@ static ssize_t mod_encode(void const *instance, request_t *request, uint8_t *buf if (client_id) { size_t len = fr_nbo_to_uint16(client_id + 2); if ((data_len + 4 + len) <= buffer_len) { - /* coverity[tainted_data} */ + /* coverity[tainted_data] */ memcpy(buffer + data_len, client_id, 4 + len); data_len += 4 + len; }