]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
MINOR: qpack: fix typo in trace
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Mon, 14 Feb 2022 13:45:10 +0000 (14:45 +0100)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Tue, 15 Feb 2022 10:08:17 +0000 (11:08 +0100)
hanme -> hname

src/qpack-dec.c

index 3bfa8e98eea399c79d36b043073849fb0a25845e..219d1c26a5141f929e03c0b616c05dc92789cf13 100644 (file)
@@ -351,7 +351,7 @@ int qpack_decode_fs(const unsigned char *raw, size_t len, struct buffer *tmp,
                                goto out;
                        }
 
-                       qpack_debug_printf(stderr, " n=%d hanme=%d name_len=%llu", !!n, !!hname, (unsigned long long)name_len);
+                       qpack_debug_printf(stderr, " n=%d hname=%d name_len=%llu", !!n, !!hname, (unsigned long long)name_len);
                        /* Name string */
 
                        if (len < name_len) {