From 9593cf4cf657c876ba36e1d405d2c538ceb79c6d Mon Sep 17 00:00:00 2001 From: Jim Hague Date: Wed, 31 Aug 2016 17:13:43 +0100 Subject: [PATCH] Correct typo preventing user buffer management for server TCP streams. (#160) --- src/tcp_ip/stream.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tcp_ip/stream.cpp b/src/tcp_ip/stream.cpp index f1966da..ecc05e8 100644 --- a/src/tcp_ip/stream.cpp +++ b/src/tcp_ip/stream.cpp @@ -258,7 +258,7 @@ void Stream::auto_cleanup_client_data(bool value) { } void Stream::auto_cleanup_server_data(bool value) { - auto_cleanup_client_ = value; + auto_cleanup_server_ = value; } void Stream::enable_ack_tracking() {