2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 21:45:37 +00:00

[2377] Don't accept quoted TTLs and such

This commit is contained in:
Michal 'vorner' Vaner
2012-12-07 17:46:48 +01:00
parent ec661eb924
commit e6898f852c

View File

@@ -83,7 +83,7 @@ public:
// Get a string token. Handle it as error if it is not string.
const string getString() {
lexer_.getNextToken(MasterToken::QSTRING).getString(string_token_);
lexer_.getNextToken(MasterToken::STRING).getString(string_token_);
return (string_token_);
}