aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/ipmath/ipmath.cpp
diff options
context:
space:
mode:
authorzheglov <zheglov@yandex-team.com>2022-07-07 19:33:56 +0300
committerzheglov <zheglov@yandex-team.com>2022-07-07 19:33:56 +0300
commit95d4076addb1b5489601ccf87d38119b3a651260 (patch)
treeb10bd9322917c65c960df93364d0024c53d660b2 /library/cpp/ipmath/ipmath.cpp
parent1ebea3a426fe7f05306ac0daeb294623e3f9db6a (diff)
downloadydb-95d4076addb1b5489601ccf87d38119b3a651260.tar.gz
reworked ip_filter to ipmath
Diffstat (limited to 'library/cpp/ipmath/ipmath.cpp')
-rw-r--r--library/cpp/ipmath/ipmath.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/ipmath/ipmath.cpp b/library/cpp/ipmath/ipmath.cpp
index b8cca00c80..f9e56c337c 100644
--- a/library/cpp/ipmath/ipmath.cpp
+++ b/library/cpp/ipmath/ipmath.cpp
@@ -135,7 +135,7 @@ TIpAddressRange::TIpAddressRangeBuilder& TIpAddressRange::TIpAddressRangeBuilder
TIpAddressRange::TIpAddressRangeBuilder& TIpAddressRange::TIpAddressRangeBuilder::To(TIpv6Address to) {
Y_ENSURE_EX(IsValid(to), TInvalidIpRangeException() << "Address " << to.ToString() << " is invalid");
- Start_ = to;
+ End_ = to;
return *this;
}