- Allow lists to end as ,;

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1742 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aet 2004-01-22 12:37:26 +00:00
parent 9f6ffdbe0a
commit 7a15956018
1 changed files with 2 additions and 0 deletions

View File

@ -344,11 +344,13 @@ void scconf_parse_token(scconf_parser * parser, int token_type, const char *toke
parser->state = STATE_VALUE;
break;
case ';':
#if 0
if ((parser->state & STATE_VALUE) == 0 ||
(parser->state & STATE_SET) == 0) {
scconf_parse_error_not_expect(parser, ";");
break;
}
#endif
scconf_parse_reset_state(parser);
break;
default: