diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-08-24 11:36:32 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2012-08-24 11:36:32 +0000 |
commit | c9f86d5248ef5af905cec532e4c6c3b1971975af (patch) | |
tree | 09973baba456661b24f1aa86fc47edc4655381ab /emulators/dtcyber | |
parent | 6bcdd13e3189a7b71923f2b6e5f9148d19bc3d9e (diff) |
Notes
Diffstat (limited to 'emulators/dtcyber')
-rw-r--r-- | emulators/dtcyber/files/patch-mux6676.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/emulators/dtcyber/files/patch-mux6676.c b/emulators/dtcyber/files/patch-mux6676.c new file mode 100644 index 000000000000..ac08b8352b46 --- /dev/null +++ b/emulators/dtcyber/files/patch-mux6676.c @@ -0,0 +1,36 @@ +--- ./mux6676.c.orig 2012-08-24 13:31:54.621914000 +0200 ++++ ./mux6676.c 2012-08-24 13:34:30.246915776 +0200 +@@ -424,7 +424,11 @@ + if (listenFd < 0) + { + printf("Can't create socket\n"); ++#if defined(_WIN32) + return; ++#else ++ return (NULL); ++#endif + } + + memset(&server, 0, sizeof(server)); +@@ -435,13 +439,21 @@ + if (bind(listenFd, (struct sockaddr *)&server, sizeof(server)) < 0) + { + printf("Can't bind to socket\n"); ++#if defined(_WIN32) + return; ++#else ++ return (NULL); ++#endif + } + + if (listen(listenFd, 5) < 0) + { + printf("Can't listen\n"); ++#if defined(_WIN32) + return; ++#else ++ return (NULL); ++#endif + } + + while (1) |