diff options
author | zheglov <zheglov@yandex-team.com> | 2022-07-07 19:33:56 +0300 |
---|---|---|
committer | zheglov <zheglov@yandex-team.com> | 2022-07-07 19:33:56 +0300 |
commit | 95d4076addb1b5489601ccf87d38119b3a651260 (patch) | |
tree | b10bd9322917c65c960df93364d0024c53d660b2 /library/cpp/ipmath/ipmath.cpp | |
parent | 1ebea3a426fe7f05306ac0daeb294623e3f9db6a (diff) | |
download | ydb-95d4076addb1b5489601ccf87d38119b3a651260.tar.gz |
reworked ip_filter to ipmath
Diffstat (limited to 'library/cpp/ipmath/ipmath.cpp')
-rw-r--r-- | library/cpp/ipmath/ipmath.cpp | 2 |
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; } |