1
0
Fork 0
forked from External/grumble

Re-add SQLite import support, but make it a build-time option.

This commit is contained in:
Mikkel Krautz 2011-08-27 20:52:06 +02:00
parent 48efaf6645
commit 4d5b897d66
11 changed files with 265 additions and 79 deletions

View file

@ -41,7 +41,8 @@ func NewChannel(id int, name string) (channel *Channel) {
channel.clients = make(map[uint32]*Client)
channel.children = make(map[int]*Channel)
channel.ACL = []*ChannelACL{}
channel.Groups = map[string]*Group{}
channel.Groups = make(map[string]*Group)
channel.Links = make(map[int]*Channel)
return
}