aboutsummaryrefslogtreecommitdiffstats
path: root/irc/epic5/files
diff options
context:
space:
mode:
authorkrion <krion@FreeBSD.org>2003-11-18 16:43:30 +0800
committerkrion <krion@FreeBSD.org>2003-11-18 16:43:30 +0800
commit083933ace16327c527244e9a4ee365de44c538fb (patch)
tree6dd7ca8178d6944b6a3eb0464d75842cc94b73b2 /irc/epic5/files
parentdb138859e6ed677196265a4fda9bfd9d7decdc4a (diff)
downloadfreebsd-ports-gnome-083933ace16327c527244e9a4ee365de44c538fb.tar.gz
freebsd-ports-gnome-083933ace16327c527244e9a4ee365de44c538fb.tar.zst
freebsd-ports-gnome-083933ace16327c527244e9a4ee365de44c538fb.zip
- 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);