]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1211] Typo (missing operator=)
authorFrancis Dupont <fdupont@isc.org>
Fri, 8 May 2020 21:05:49 +0000 (23:05 +0200)
committerFrancis Dupont <fdupont@isc.org>
Mon, 15 Jun 2020 15:43:16 +0000 (15:43 +0000)
src/lib/dhcpsrv/cfg_option.h

index 7db9d22c554c946c21653ab05fd62756884286a0..1e49cdbce96c90a0b7b022118f12e9bc7707a720 100644 (file)
@@ -116,7 +116,7 @@ public:
     OptionDescriptor& operator=(const OptionDescriptor& other) {
         if (this != &other) {
             // Not self-assignment.
-            data::StampedElement=(other);
+            data::StampedElement::operator=(other);
             option_ = other.option_;
             persistent_ = other.persistent_;
             formatted_value_ = other.formatted_value_;