summaryrefslogtreecommitdiff
path: root/irc/epic5/files
diff options
context:
space:
mode:
authorKirill Ponomarev <krion@FreeBSD.org>2003-11-18 08:43:30 +0000
committerKirill Ponomarev <krion@FreeBSD.org>2003-11-18 08:43:30 +0000
commitc8eaec0fe73c4f68ef04de5e540c3aa9c964acf7 (patch)
tree955480fc51f01c8c791176d24a8011d826229c93 /irc/epic5/files
parent- Update to 0.89 ("Chateaugay") (diff)
- Update to version 1.1.16
- Add SSL support PR: 59387 Submitted by: maintainer
Diffstat (limited to 'irc/epic5/files')
-rw-r--r--irc/epic5/files/patch-ctcp.c12
-rw-r--r--irc/epic5/files/patch-dcc.c11
2 files changed, 0 insertions, 23 deletions
diff --git a/irc/epic5/files/patch-ctcp.c b/irc/epic5/files/patch-ctcp.c
deleted file mode 100644
index b8f4eef94264..000000000000
--- a/irc/epic5/files/patch-ctcp.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- source/ctcp.c.orig Tue Dec 5 01:11:56 2000
-+++ source/ctcp.c Tue May 27 16:55:04 2003
-@@ -897,7 +897,8 @@
- int len;
-
- /* Make sure that the final \001 doesnt get truncated */
-- len = IRCD_BUFFER_SIZE - (12 + strlen(to));
-+ if ((len = IRCD_BUFFER_SIZE - (12 + strlen(to))) < 0)
-+ return;
- putbuf2 = alloca(len);
-
- if (format)
diff --git a/irc/epic5/files/patch-dcc.c b/irc/epic5/files/patch-dcc.c
deleted file mode 100644
index bb588180d6b7..000000000000
--- a/irc/epic5/files/patch-dcc.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- source/dcc.c.orig Mon May 6 03:36:21 2002
-+++ source/dcc.c Mon May 6 03:36:44 2002
-@@ -1366,7 +1366,7 @@
- /*
- * Figure out something sane for the xfer speed.
- */
-- if (Client->bytes_sent)
-+ if (act_sent)
- {
- strlcpy(speed, calc_speed(act_sent,
- Client->starttime.tv_sec, time(NULL)), 9);