czmqpp: init at 1.2.0
This commit is contained in:
17
pkgs/development/libraries/czmqpp/socket.patch
Normal file
17
pkgs/development/libraries/czmqpp/socket.patch
Normal file
@@ -0,0 +1,17 @@
|
||||
--- /src/socket.cpp
|
||||
+++ /src/socket.cpp
|
||||
@@ -60,12 +60,12 @@
|
||||
int socket::bind(const std::string& address)
|
||||
{
|
||||
// format-security: format not a string literal and no format arguments.
|
||||
- return zsocket_bind(self_, address.c_str());
|
||||
+ return zsocket_bind(self_, "%s", address.c_str());
|
||||
}
|
||||
int socket::connect(const std::string& address)
|
||||
{
|
||||
// format-security: format not a string literal and no format arguments.
|
||||
- return zsocket_connect(self_, address.c_str());
|
||||
+ return zsocket_connect(self_, "%s", address.c_str());
|
||||
}
|
||||
|
||||
bool operator==(const socket& sock_a, const socket& sock_b)
|
||||
Reference in New Issue
Block a user