Removed len argument from proposal_get_token()

Also use enumerators instead of lexparser.h to parse proposal strings.
This commit is contained in:
Tobias Brunner
2012-09-13 15:44:01 +02:00
parent 1962e12fd3
commit 995875210a
6 changed files with 30 additions and 32 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ static linked_list_t* load_proposals(private_custom_proposal_t *this,
alg = strtoul(value, &end, 10);
if (end == value || errno)
{
token = proposal_get_token(value, strlen(value));
token = proposal_get_token(value);
if (!token)
{
DBG1(DBG_CFG, "unknown algorithm: '%s', skipped", value);