kumquat-buildroot/package/games/vice/vice-1.22-remove-bzero.patch
Daniel Laird 1b5c1e7bdb games: Move all games into games subdir
Moved all games into a subdir called games and
then updated makefiles as necessary.

If not one objects to this one then I will
probably do the same for audio next.

Daniel Laird
2008-08-29 13:27:37 +00:00

21 lines
924 B
Diff

--- a/src/network.c 2007-07-15 18:49:24.000000000 -0400
+++ b/src/network.c 2008-03-01 21:29:40.000000000 -0500
@@ -742,7 +742,7 @@ int network_start_server(void)
#ifdef HAVE_IPV6
if (netplay_ipv6) {
- bzero((char*)&server_addr6, sizeof(struct sockaddr_in6));
+ memset((char*)&server_addr6, 0, sizeof(struct sockaddr_in6));
server_addr6.sin6_port = htons(server_port);
server_addr6.sin6_family = PF_INET6;
server_addr6.sin6_addr=in6addr_any;
@@ -853,7 +853,7 @@ int network_connect_client(void)
}
#ifdef HAVE_IPV6
if (netplay_ipv6) {
- bzero((char*)&server_addr6, sizeof(struct sockaddr_in6));
+ memset((char*)&server_addr6, 0, sizeof(struct sockaddr_in6));
server_addr6.sin6_port = htons(server_port);
server_addr6.sin6_family = PF_INET6;
memcpy(&server_addr6.sin6_addr, server_hostent->h_addr, server_hostent->h_length);