diff options
author | Francis Dupont <fdupont@isc.org> | 2024-03-19 19:17:32 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2024-03-20 00:18:25 +0100 |
commit | b29d95d5301b0f5deea1c4add5974afff0a511ae (patch) | |
tree | 58e9a2d24010386eb8e7e545bb8f68459715dfea /src/lib/dhcpsrv/tests | |
parent | [#3211] Removed remaining InvalidBufferPosition (diff) | |
download | kea-b29d95d5301b0f5deea1c4add5974afff0a511ae.tar.xz kea-b29d95d5301b0f5deea1c4add5974afff0a511ae.zip |
[#3211] Renamed getDataAsVP
Diffstat (limited to 'src/lib/dhcpsrv/tests')
-rw-r--r-- | src/lib/dhcpsrv/tests/dhcp4o6_ipc_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dhcpsrv/tests/dhcp4o6_ipc_unittest.cc b/src/lib/dhcpsrv/tests/dhcp4o6_ipc_unittest.cc index e0f8973ad6..a09866551e 100644 --- a/src/lib/dhcpsrv/tests/dhcp4o6_ipc_unittest.cc +++ b/src/lib/dhcpsrv/tests/dhcp4o6_ipc_unittest.cc @@ -336,7 +336,7 @@ Dhcp4o6IpcBaseTest::testReceiveError(const Pkt6Ptr& pkt) { buf.clear(); ASSERT_NO_THROW(pkt->pack()); - ASSERT_NE(-1, ::send(ipc_src.getSocketFd(), buf.getDataAsVP(), + ASSERT_NE(-1, ::send(ipc_src.getSocketFd(), buf.getDataAsVoidPtr(), buf.getLength(), 0)); // Call receive with a timeout. The data should appear on the socket |