]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[406-update-cb_cmds-with-get-commands] Fixed a trivial bug in an old header
authorFrancis Dupont <fdupont@isc.org>
Tue, 29 Jan 2019 22:32:39 +0000 (23:32 +0100)
committerFrancis Dupont <fdupont@isc.org>
Tue, 5 Feb 2019 16:11:11 +0000 (11:11 -0500)
src/lib/dhcp/option_space_container.h

index 8a7736f46daa0ae6d7863e9713350861ca33c517..e6665faed9d3ce78b177cc3dc41bcf9d855c3ab0 100644 (file)
@@ -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;
                     }