ports/cad/PrusaSlicer/files/patch-src_slic3r_Utils_TCPConsole.cpp
Michael Reifenberger ae9787cdfb cad/PrusaSlicer: update to 2.9.0
Adapted patch provided from Jesper Schmitz Mouridsen

PR:		284821
Reported by:	Torfinn Ingolfsen
Approved by:	teodorsigaev@
2025-03-09 15:37:10 +01:00

11 lines
443 B
C++

--- src/slic3r/Utils/TCPConsole.cpp.orig 2025-02-14 23:42:57 UTC
+++ src/slic3r/Utils/TCPConsole.cpp
@@ -161,7 +161,7 @@ bool TCPConsole::run_queue()
auto endpoints = m_resolver.resolve(m_host_name, m_port_name);
- m_socket.async_connect(endpoints->endpoint(),
+ m_socket.async_connect(endpoints.begin()->endpoint(),
boost::bind(&TCPConsole::handle_connect, this, boost::placeholders::_1)
);