]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Consistently use bracket, not brace, for annotations (CID #1448182) (#4704)
authorJames Jones <jejones3141@gmail.com>
Mon, 12 Sep 2022 23:39:06 +0000 (18:39 -0500)
committerGitHub <noreply@github.com>
Mon, 12 Sep 2022 23:39:06 +0000 (19:39 -0400)
Typo

src/listen/dhcpv6/proto_dhcpv6.c

index b7719c57fd50b78abdbf9bc794ecc2beb1938b4f..4257b6dbfcea17a75590429587a292087dfbdd73 100644 (file)
@@ -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;
                        }