mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-07 10:23:12 +02:00
Fixed an alias bug
This commit is contained in:
@@ -1919,3 +1919,5 @@ seen. gmtime warning still there
|
||||
- Removed some leftover +I code
|
||||
- Fixed a bug in /who where +s was case sensitive. Reported by jollino (#0000736)
|
||||
- Removed some debugging messages
|
||||
- Fixed an alias bug reported by darko`` where alias::format::type of "normal" produced
|
||||
an error.
|
||||
|
||||
+2
-2
@@ -5538,9 +5538,9 @@ int _test_alias(ConfigFile *conf, ConfigEntry *ce) {
|
||||
{
|
||||
if (!strcmp(cepp->ce_vardata, "services"))
|
||||
;
|
||||
else if (!strcmp(cep->ce_vardata, "stats"))
|
||||
else if (!strcmp(cepp->ce_vardata, "stats"))
|
||||
;
|
||||
else if (!strcmp(cep->ce_vardata, "normal"))
|
||||
else if (!strcmp(cepp->ce_vardata, "normal"))
|
||||
;
|
||||
else {
|
||||
config_status("%s:%i: unknown alias type",
|
||||
|
||||
Reference in New Issue
Block a user