python/hypothesis: update to 6.122.3
[oi-userland.git] / components / desktop / synergy / patches / 08-string-args.patch
blob74652b8c20a64c88b0921d35b1aa4ee3aa56751b
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
3 @@ -147,7 +147,7 @@
4 case kIpcLogLine: {
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());
9 break;
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
14 @@ -95,7 +95,7 @@
15 case kIpcCommand: {
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());
20 break;