This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

bug in src/mod/irc.mod/chan.c?

Old posts that have not been replied to for several years.
Locked
P
PerilousSeas

bug in src/mod/irc.mod/chan.c?

Post by PerilousSeas »

I'm not sure where to post this...but...

in src/mod/irc.mod/chan.c
static int gotmsg(char *from, char *msg)

I think the line:

if (!strchr("&#!+@$", msg[0]))

should be:

if (!strchr(CHANMETA "@", msg[0]))
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Re: bug in src/mod/irc.mod/chan.c?

Post by demond »

PerilousSeas wrote:I'm not sure where to post this...but...
eggdev mailing list?
P
PerilousSeas

Post by PerilousSeas »

Thanks....I found the bugzilla page and reported it there.
Locked