X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fchannel.c;h=d5d873cae3c7f25ed203eb30fab5411dd94b2c39;hb=2c0dc163ea5a84f8bf2d4fb5ac98985d77da32c1;hp=021f9bd5bb63eb87646e09dfda3bbd5583b17641;hpb=7f1cf57d76aa4dd549871bbf3350d39cd4d9b212;p=umurmur.git diff --git a/src/channel.c b/src/channel.c index 021f9bd..d5d873c 100644 --- a/src/channel.c +++ b/src/channel.c @@ -153,6 +153,7 @@ void Chan_init() if (i == 0) { rootChan = createChannel(0, chdesc.name, chdesc.description); rootChan->noenter = chdesc.noenter; + rootChan->silent = chdesc.silent; list_add_tail(&rootChan->flatlist_node, &channels); if (strcmp(defaultChannelName, chdesc.name) == 0) defaultChan = rootChan; @@ -162,6 +163,7 @@ void Chan_init() ch = Chan_createChannel(chdesc.name, chdesc.description); ch->noenter = chdesc.noenter; ch->position = chdesc.position; + ch->silent = chdesc.silent; if (chdesc.password) { Log_info("Setting password on channel '%s'", ch->name); ch->password = strdup(chdesc.password);