allow creation of persistent modeless channels

This commit is contained in:
Florian Westphal 2009-03-07 00:21:43 +01:00
parent e9e7fc33f1
commit 2d4361d088
1 changed files with 6 additions and 4 deletions

View File

@ -40,6 +40,7 @@
#include "ngircd.h"
#include "conn.h"
#include "client.h"
#include "channel.h"
#include "defines.h"
#include "log.h"
#include "match.h"
@ -1169,10 +1170,11 @@ Handle_Channelname(struct Conf_Channel *new_chan, const char *name)
size_t size = sizeof(new_chan->name);
char *dest = new_chan->name;
/* Channels names must begin with "&" or "#", if it is
* missing, add a '#'. This is only here for user convenience.
*/
if (*name && *name != '#' && *name != '&') {
if (!Channel_IsValidName(name)) {
/*
* maybe user forgot to add a '#'.
* This is only here for user convenience.
*/
*dest = '#';
--size;
++dest;