summaryrefslogtreecommitdiff
path: root/japanese/ircII/files/patch-source::wserv.c
diff options
context:
space:
mode:
Diffstat (limited to 'japanese/ircII/files/patch-source::wserv.c')
-rw-r--r--japanese/ircII/files/patch-source::wserv.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/japanese/ircII/files/patch-source::wserv.c b/japanese/ircII/files/patch-source::wserv.c
deleted file mode 100644
index 76233b6d7dd6..000000000000
--- a/japanese/ircII/files/patch-source::wserv.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- source/wserv.c.orig Sat Jul 2 11:32:13 1994
-+++ source/wserv.c Tue Oct 15 07:52:08 2002
-@@ -80,7 +80,7 @@
- strcpy(addr->sun_path, argv[1]);
- s = socket(AF_UNIX, SOCK_STREAM, 0);
- if (0 > connect(s, (struct sockaddr *) addr, sizeof(addr->sun_family) +
-- strlen(addr->sun_path)))
-+ strlen(addr->sun_path) + 1))
- exit(0);
-
- /*
-@@ -88,10 +88,10 @@
- * can grab the size of the tty, and have it changed.
- */
-
-- tmp = ttyname(0);
-+ if ((tmp = ttyname(0)) == NULL)
-+ perror("ttyname(0)");
- write(s, tmp, strlen(tmp));
- write(s, "\n", 1);
-- perror(tmp);
-
- term_init();
-