diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-11-25 23:58:22 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2023-11-25 23:58:22 +0100 |
commit | d854968453a5a32c5bc786d0c83ab0040de17bea (patch) | |
tree | 504076f1565e8cb9ab1b0fd944d7d68d47095cdd /conf | |
parent | dc665727dcf149873be53c6e9a1616ae7b8d97e6 (diff) | |
parent | 8041b0e93695e788fe16343aa71334e834e22b35 (diff) |
Merge branch 'tmp3' into wireguard-next-tmp7-1
Diffstat (limited to 'conf')
-rw-r--r-- | conf/cf-lex.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l index 5eb709bc..8c20b2d0 100644 --- a/conf/cf-lex.l +++ b/conf/cf-lex.l @@ -354,7 +354,7 @@ else: { <BQUOTED><<EOF>> cf_error("Unterminated byte string"); <BQUOTED>["] { 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); |