From f9c572c92a2c257ddefd9fb2e9706b0425270b55 Mon Sep 17 00:00:00 2001 From: okir Date: Thu, 20 Nov 2003 16:10:08 +0000 Subject: [PATCH] - allow stuff such as blabla= foofaah{} to work git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1628 c6295689-39f2-0310-b995-f0e70906c6a9 --- src/scconf/sclex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scconf/sclex.c b/src/scconf/sclex.c index 97fe6499..a5011298 100644 --- a/src/scconf/sclex.c +++ b/src/scconf/sclex.c @@ -154,7 +154,7 @@ static int scconf_lex_engine(scconf_parser * parser, BUFHAN * bp) case EOF: break; default: - buf_eat_till(bp, (char) this_char, ";, \t\n"); + buf_eat_till(bp, (char) this_char, ";,{}= \t\n"); scconf_parse_token(parser, TOKEN_TYPE_STRING, bp->buf); buf_zero(bp); continue;