From 8041b0e93695e788fe16343aa71334e834e22b35 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sat, 25 Nov 2023 23:58:05 +0100 Subject: fix bytestring to adata merge --- conf/cf-lex.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conf') diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 6ac3ab20..fc9b7497 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -354,7 +354,7 @@ else: { <> cf_error("Unterminated byte string"); ["] { BEGIN(INITIAL); - struct bytestring *bytes; + struct adata *bytes; bytes = cfg_allocz(sizeof(*bytes) + quoted_buffer.used); memcpy(bytes->data, quoted_buffer.data, quoted_buffer.used); -- cgit v1.2.3