summaryrefslogtreecommitdiff
path: root/chat/eggdrop/patches/patch-al
blob: 8cb99dc681ac27770dc7ea373e7354575b278739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$NetBSD: patch-al,v 1.1 2007/05/22 16:47:04 lkundrak Exp $

Fix for http://www.eggheads.org/bugzilla/show_bug.cgi?id=462

--- src/mod/irc.mod/chan.c.orig	2007-05-22 18:29:41.000000000 +0200
+++ src/mod/irc.mod/chan.c
@@ -2204,7 +2204,8 @@ static int gotmsg(char *from, char *msg)
   if (!chan)
     return 0;                   /* Private msg to an unknown channel?? */
   fixcolon(msg);
-  strcpy(uhost, from);
+  strncpy(uhost, from, UHOSTMAX);
+  uhost[UHOSTMAX] = '\0';
   nick = splitnick(&uhost);
   /* Only check if flood-ctcp is active */
   if (flud_ctcp_thr && detect_avalanche(msg)) {