Fixed validation of server names containing digits.
This commit is contained in:
parent
058d3085a9
commit
5b35b101f2
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
ngIRCd HEAD
|
ngIRCd HEAD
|
||||||
|
|
||||||
|
- Fixed validation of server names containing digits.
|
||||||
- Update info text of local server after re-reading configuration.
|
- Update info text of local server after re-reading configuration.
|
||||||
- Changed Numerics 265 and 266 to follow ircd 2.11.x "standards".
|
- Changed Numerics 265 and 266 to follow ircd 2.11.x "standards".
|
||||||
- Allow PASS syntax defined in RFC 1459 for server links, too.
|
- Allow PASS syntax defined in RFC 1459 for server links, too.
|
||||||
|
@ -670,4 +671,4 @@ ngIRCd 0.0.1, 31.12.2001
|
||||||
|
|
||||||
|
|
||||||
--
|
--
|
||||||
$Id: ChangeLog,v 1.309 2006/11/05 13:03:46 fw Exp $
|
$Id: ChangeLog,v 1.310 2006/11/10 10:05:00 alex Exp $
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
#include "portab.h"
|
#include "portab.h"
|
||||||
|
|
||||||
static char UNUSED id[] = "$Id: conf.c,v 1.94 2006/11/05 13:03:48 fw Exp $";
|
static char UNUSED id[] = "$Id: conf.c,v 1.95 2006/11/10 10:05:08 alex Exp $";
|
||||||
|
|
||||||
#include "imp.h"
|
#include "imp.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
@ -975,7 +975,7 @@ Validate_Config(bool Configtest, bool Rehash)
|
||||||
do {
|
do {
|
||||||
if (*ptr >= 'a' && *ptr <= 'z') continue;
|
if (*ptr >= 'a' && *ptr <= 'z') continue;
|
||||||
if (*ptr >= 'A' && *ptr <= 'Z') continue;
|
if (*ptr >= 'A' && *ptr <= 'Z') continue;
|
||||||
if (*ptr >= '1' && *ptr <= '0') continue;
|
if (*ptr >= '0' && *ptr <= '9') continue;
|
||||||
if (ptr > Conf_ServerName) {
|
if (ptr > Conf_ServerName) {
|
||||||
if (*ptr == '.' || *ptr == '-')
|
if (*ptr == '.' || *ptr == '-')
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue