1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00

channel_create() wasn't called properly

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1813 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-09-22 16:06:15 +00:00 committed by cras
parent 80df4378d3
commit a51170c00f
2 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,7 @@ channel_create(server, name, automatic)
char *name
int automatic
CODE:
channel_create(server->chat_type, server, name, automatic);
CHAT_PROTOCOL(server)->channel_create(server, name, automatic);
Irssi::Channel
channel_find(server, name)

View File

@ -14,6 +14,7 @@
#include "special-vars.h"
#include "window-item-def.h"
#include "chat-protocols.h"
#include "chatnets.h"
#include "servers.h"
#include "servers-reconnect.h"