From d7c75de9b432e59b505b523da643e7a68df94562 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 27 Feb 2024 20:36:32 -0600 Subject: [PATCH] Update: The string map to use "key" rather than "name". This changes the code to be in line with the latest refactoring in the FLL project 0.7.x. --- sources/c/tacocat/main/send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/c/tacocat/main/send.c b/sources/c/tacocat/main/send.c index 5c03e8c..03d02d2 100644 --- a/sources/c/tacocat/main/send.c +++ b/sources/c/tacocat/main/send.c @@ -235,7 +235,7 @@ extern "C" { if (F_status_is_error_not(set->status)) { for (f_number_unsigned_t i = 0; i < set->headers.used; ++i) { - set->status = f_string_dynamic_append_nulless(set->headers.array[i].name, &set->buffer); + set->status = f_string_dynamic_append_nulless(set->headers.array[i].key, &set->buffer); if (F_status_is_error_not(set->status)) { set->status = f_string_dynamic_append_nulless(f_fss_extended_open_s, &set->buffer); -- 1.8.3.1