diff options
Diffstat (limited to 'games/doomlegacy/files/patch-src_i__tcp.c')
-rw-r--r-- | games/doomlegacy/files/patch-src_i__tcp.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/games/doomlegacy/files/patch-src_i__tcp.c b/games/doomlegacy/files/patch-src_i__tcp.c deleted file mode 100644 index 4057de5862c7..000000000000 --- a/games/doomlegacy/files/patch-src_i__tcp.c +++ /dev/null @@ -1,15 +0,0 @@ ---- src/i_tcp.c.orig 2017-03-03 19:49:10 UTC -+++ src/i_tcp.c -@@ -411,8 +411,12 @@ byte IPX_hashaddr(mysockaddr_t *a) - // Not allowed to be 0. - // Big endian, want final addr byte. - #ifdef LINUX -+# ifdef FREEBSD -+ return ((byte)(a->ipx.sipx_addr.x_host.c_host[5])) | 0x80; -+# else - // Linux: IPX address hash - return ((byte)(a->ipx.sipx_node[5])) | 0x80; -+# endif - #else - // Windows, OS2, DJGPP: IPX address hash - return ((byte)(a->ipx.sa_nodenum[5])) | 0x80; |