1 --- synergy-1.7.6-stable/src/lib/ipc/IpcClientProxy.cpp.orig 2016-08-23 23:42:29.557617453 +0200
2 +++ synergy-1.7.6-stable/src/lib/ipc/IpcClientProxy.cpp 2016-08-23 23:42:43.231749189 +0200
5 const IpcLogLineMessage& llm = static_cast<const IpcLogLineMessage&>(message);
6 String logLine = llm.logLine();
7 - ProtocolUtil::writef(&m_stream, kIpcMsgLogLine, logLine);
8 + ProtocolUtil::writef(&m_stream, kIpcMsgLogLine, logLine.c_str());
12 --- synergy-1.7.6-stable/src/lib/ipc/IpcServerProxy.cpp.orig 2016-08-23 23:41:19.138744816 +0200
13 +++ synergy-1.7.6-stable/src/lib/ipc/IpcServerProxy.cpp 2016-08-23 23:41:55.467508151 +0200
16 const IpcCommandMessage& cm = static_cast<const IpcCommandMessage&>(message);
17 String command = cm.command();
18 - ProtocolUtil::writef(&m_stream, kIpcMsgCommand, command);
19 + ProtocolUtil::writef(&m_stream, kIpcMsgCommand, command.c_str());