diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-11-18 08:43:30 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-11-18 08:43:30 +0000 |
commit | c8eaec0fe73c4f68ef04de5e540c3aa9c964acf7 (patch) | |
tree | 955480fc51f01c8c791176d24a8011d826229c93 /irc/epic5/files/patch-ctcp.c | |
parent | - Update to 0.89 ("Chateaugay") (diff) |
- Update to version 1.1.16
- Add SSL support
PR: 59387
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=94236
Diffstat (limited to 'irc/epic5/files/patch-ctcp.c')
-rw-r--r-- | irc/epic5/files/patch-ctcp.c | 12 |
1 files changed, 0 insertions, 12 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) |