Several fixes to work better with non-irssi clients, also fixed a potential

crash if sending a wrong PASS.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2210 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-12-07 15:39:30 +00:00 committed by cras
commit cb6e1286cd
4 changed files with 56 additions and 41 deletions

View file

@ -1,7 +1,7 @@
/*
sample.c : sample plugin for irssi
proxy.c : irc proxy
Copyright (C) 1999 Timo Sirainen
Copyright (C) 1999-2001 Timo Sirainen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -42,11 +42,11 @@ void irc_proxy_init(void)
"... to set them.");
}
plugin_proxy_listen_init();
proxy_listen_init();
module_register("proxy", "irc");
}
void irc_proxy_deinit(void)
{
plugin_proxy_listen_deinit();
proxy_listen_deinit();
}