- 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
This commit is contained in:
okir 2003-11-20 16:10:08 +00:00
parent cf733acdad
commit f9c572c92a
1 changed files with 1 additions and 1 deletions

View File

@ -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;