- Back out Olaf's change, as it seems to break existing

behaviour while parsing pkcs15 profile files. Although
  officially any list value with an equal sign or braces
  should be enclosured with quotation marks, but anyway.


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1633 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aet 2003-11-22 18:50:04 +00:00
parent eeca8db27c
commit 1435c8fcce
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ static int scconf_lex_engine(scconf_parser * parser, BUFHAN * bp)
case EOF:
break;
default:
buf_eat_till(bp, (char) this_char, ";,{}= \t\r\n");
buf_eat_till(bp, (char) this_char, ";, \t\r\n");
scconf_parse_token(parser, TOKEN_TYPE_STRING, bp->buf);
buf_zero(bp);
continue;