diff options
author | Andreas Kling <kling@serenityos.org> | 2020-01-26 14:42:44 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-01-26 14:42:44 +0100 |
commit | 388d40d755428848980016057c1e64fac253256f (patch) | |
tree | 984014278305100093066d08d743b66029c55c9f /Kernel/Net | |
parent | 8e7e502f37897382865ab052df4bd07a7268541e (diff) | |
download | serenity-388d40d755428848980016057c1e64fac253256f.zip |
IPv4: Fix bitrot in IPv4Socket debug logging
Diffstat (limited to 'Kernel/Net')
-rw-r--r-- | Kernel/Net/IPv4Socket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/IPv4Socket.cpp b/Kernel/Net/IPv4Socket.cpp index 3868421fcf..b6f78d7c18 100644 --- a/Kernel/Net/IPv4Socket.cpp +++ b/Kernel/Net/IPv4Socket.cpp @@ -385,7 +385,7 @@ bool IPv4Socket::did_receive(const IPv4Address& source_address, u16 source_port, m_bytes_received += packet_size; #ifdef IPV4_SOCKET_DEBUG if (buffer_mode() == BufferMode::Bytes) - kprintf("IPv4Socket(%p): did_receive %d bytes, total_received=%u, bytes in buffer: %zu\n", this, packet_size, m_bytes_received, m_receive_buffer.bytes_in_write_buffer()); + kprintf("IPv4Socket(%p): did_receive %d bytes, total_received=%u\n", this, packet_size, m_bytes_received); else kprintf("IPv4Socket(%p): did_receive %d bytes, total_received=%u, packets in queue: %zu\n", this, packet_size, m_bytes_received, m_receive_queue.size_slow()); #endif |