Bad parsing of files/blootbot.servers
Brought to you by:
timriker
The regexp in file src/Files.pl, line 70 doesnt match at entries in files/blootbot.servers which have a port value like:
irc.freenode.net:8000
\S matches the : too => result: (\S+) matches the complete line.
To avoid those errors replace
if (/^(\S+)(:(\d+))?$/) {
with
if (/^(\S+?)(:(\d+))?$/) {
That makes the + operator non-greedy.
LongDon (bzflag)