View Single Post
Old 08-02-2004, 01:25 PM  
neoxed
Too much time...
 
Join Date: May 2003
Posts: 1,326
Default Re: Bot Login Issue

Quote:
Originally posted by intel
I am using eggdrop v1.6.15+SSL
Iobanana2
ioA 1.1.6+
You mean ioBanana v20 right?

Quote:
Originally posted by intel
can not find channel named "0"
while executing
"close $s"
That would be a bug. I guess Harm made a small typo in ftp.tcl when he was editing it. Open ftp.tcl in a text editor, find line 2428.

Code:
		# close connection if not logged in
		catch {close $s}
		return -1
That should be ::ftp::Close or Close, since $s is the handle to a FTP connection and not a valid open channel (socket, file, etc.)


Replace with:
Code:
		# close connection if not logged in
		catch {Close $s}
		return -1
neoxed is offline