summary refs log tree commit diff
path: root/pkgs/development/libraries/czmqpp/socket.patch
blob: 0464bcf77971c56efd65b6e3663588dfb42d4310 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)