From 10bbb7c6f91dc0cb434bb84409029316341d9826 Mon Sep 17 00:00:00 2001 From: Ben Winston Date: Tue, 18 Jun 2024 12:00:17 -0400 Subject: bugfix: parse all strings as potentially compound --- booki.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booki.c b/booki.c index 564e653..34cd4c1 100644 --- a/booki.c +++ b/booki.c @@ -701,7 +701,7 @@ void parse_book(char* current_pos, BOOK* book) { // set 'string_field' to be the pointer to the correct field in the struct string_field = get_string_field(book, datafield.name); // set the value of the struct's field to be the parsed string - *string_field = parse_string(current_pos, &new_pos); + *string_field = parse_strings(current_pos, &new_pos); current_pos = new_pos; break; } else if (datafield.type == booki_number) { -- cgit v1.2.3