From: Francis Dupont Date: Tue, 29 Jan 2019 22:32:39 +0000 (+0100) Subject: [406-update-cb_cmds-with-get-commands] Fixed a trivial bug in an old header X-Git-Tag: 426-cassandra-unit-tests-ends-with-success-even-though-they-fail_base~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97c4da6501e193b53be313298e857f541d0dd26a;p=thirdparty%2Fkea.git [406-update-cb_cmds-with-get-commands] Fixed a trivial bug in an old header --- diff --git a/src/lib/dhcp/option_space_container.h b/src/lib/dhcp/option_space_container.h index 8a7736f46d..e6665faed9 100644 --- a/src/lib/dhcp/option_space_container.h +++ b/src/lib/dhcp/option_space_container.h @@ -1,4 +1,4 @@ -// Copyright (C) 2013-2017 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2013-2019 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -124,7 +124,7 @@ public: other_it->second->begin(); other_items_it != other_it->second->end(); ++other_items_it) { - if (items_it->equals(*other_items_it)) { + if ((*items_it)->equals(*other_items_it)) { match_found = true; break; }