diff options
author | Marcin Siodelski <marcin@isc.org> | 2016-06-30 17:25:53 +0200 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2016-07-08 07:50:19 +0200 |
commit | fbd175e09f2d2a4e93e5e6ad593a3121b2145ada (patch) | |
tree | 62b1846f3a95fdc35f4176896ae6ee21316253db /src/lib/eval/evaluate.cc | |
parent | [4497] Documented tests for options copying. (diff) | |
download | kea-fbd175e09f2d2a4e93e5e6ad593a3121b2145ada.tar.xz kea-fbd175e09f2d2a4e93e5e6ad593a3121b2145ada.zip |
[4497] Implemented copying options on retrieval from packet.
Diffstat (limited to 'src/lib/eval/evaluate.cc')
-rw-r--r-- | src/lib/eval/evaluate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/eval/evaluate.cc b/src/lib/eval/evaluate.cc index 630b227310..bb947f1991 100644 --- a/src/lib/eval/evaluate.cc +++ b/src/lib/eval/evaluate.cc @@ -9,7 +9,7 @@ namespace isc { namespace dhcp { -bool evaluate(const Expression& expr, const Pkt& pkt) { +bool evaluate(const Expression& expr, Pkt& pkt) { ValueStack values; for (Expression::const_iterator it = expr.begin(); it != expr.end(); ++it) { |