mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 02:57:40 -04:00
17 lines
544 B
Plaintext
17 lines
544 B
Plaintext
$NetBSD: patch-al,v 1.2 2007/10/18 09:15:34 obache Exp $
|
|
|
|
Fix for http://www.eggheads.org/bugzilla/show_bug.cgi?id=462
|
|
|
|
--- src/mod/irc.mod/chan.c.orig 2006-03-28 02:35:51.000000000 +0000
|
|
+++ src/mod/irc.mod/chan.c
|
|
@@ -2211,7 +2211,8 @@ static int gotmsg(char *from, char *msg)
|
|
return 0; /* Unknown channel; don't process. */
|
|
|
|
fixcolon(msg);
|
|
- strcpy(uhost, from);
|
|
+ strncpy(uhost, from, UHOSTMAX);
|
|
+ uhost[UHOSTMAX] = '\0';
|
|
nick = splitnick(&uhost);
|
|
ignoring = match_ignore(from);
|
|
/* Only check if flood-ctcp is active */
|