2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-01 06:25:34 +00:00

[2270] DHCPv4 parser fixes. Tests now pass.

This commit is contained in:
Tomek Mrugalski
2012-10-12 13:52:36 +02:00
parent 650a6c1b4f
commit 552657fff4
2 changed files with 1 additions and 3 deletions

View File

@@ -399,7 +399,7 @@ public:
pos = txt.find("-");
if (pos != string::npos) {
// using min-max notation
IOAddress min(txt.substr(0,pos - 1));
IOAddress min(txt.substr(0,pos));
IOAddress max(txt.substr(pos + 1));
Pool4Ptr pool(new Pool4(min, max));