summaryrefslogtreecommitdiff
path: root/conf/cf-lex.l
diff options
context:
space:
mode:
Diffstat (limited to 'conf/cf-lex.l')
-rw-r--r--conf/cf-lex.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index dd62e31a..28479ff3 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -244,7 +244,7 @@ WHITE [ \t]
({XIGIT}{2}){16,}|{XIGIT}{2}(:{XIGIT}{2}){15,}|hex:({XIGIT}{2}(:?{XIGIT}{2})*)? {
char *s = yytext;
- struct bytestring *bs;
+ struct adata *bs;
/* Skip 'hex:' prefix */
if (s[0] == 'h' && s[1] == 'e' && s[2] == 'x' && s[3] == ':')
@@ -254,7 +254,7 @@ WHITE [ \t]
if (len < 0)
cf_error("Invalid hex string");
- bs = cfg_allocz(sizeof(struct bytestring) + len);
+ bs = cfg_allocz(sizeof(struct adata) + len);
bs->length = bstrhextobin(s, bs->data);
ASSERT(bs->length == len);