summaryrefslogtreecommitdiff
path: root/games/ultimatestunts/files/patch-simulation_udpnet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'games/ultimatestunts/files/patch-simulation_udpnet.cpp')
-rw-r--r--games/ultimatestunts/files/patch-simulation_udpnet.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/games/ultimatestunts/files/patch-simulation_udpnet.cpp b/games/ultimatestunts/files/patch-simulation_udpnet.cpp
new file mode 100644
index 000000000000..c0837cbddcc8
--- /dev/null
+++ b/games/ultimatestunts/files/patch-simulation_udpnet.cpp
@@ -0,0 +1,15 @@
+udpnet.cpp:61:6: error: no viable conversion from '__bind<int &, sockaddr *, unsigned long>' to 'int'
+ int rc = bind (m_Socket, (struct sockaddr *) &MyAddress, sizeof(MyAddress));
+ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+--- simulation/udpnet.cpp.orig 2019-12-02 12:38:14 UTC
++++ simulation/udpnet.cpp
+@@ -58,7 +58,7 @@ CUDPNet::CUDPNet(unsigned int port)
+ MyAddress.sin_addr.s_addr = htonl(INADDR_ANY);
+ MyAddress.sin_port = htons(port);
+
+- int rc = bind (m_Socket, (struct sockaddr *) &MyAddress, sizeof(MyAddress));
++ int rc = ::bind (m_Socket, (struct sockaddr *) &MyAddress, sizeof(MyAddress));
+ if(rc < 0)
+ {
+ printf("cannot bind port number %d \n", port);