mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-06 11:13:12 +02:00
- Patch by WolfSage to make /rehash -all case insensitive.
This commit is contained in:
@@ -1618,3 +1618,4 @@ MOTDs
|
||||
- #0003223 reported by JasonTik patched by WolfSage, regarding undocumented
|
||||
max link pass length. This now -WARNS- when there is a password bigger
|
||||
than PASSWDLEN.
|
||||
- Patch by WolfSage to make /rehash -all case insensitive.
|
||||
|
||||
+1
-1
@@ -622,7 +622,7 @@ CMD_FUNC(m_rehash)
|
||||
parv[1] = parv[2];
|
||||
}
|
||||
|
||||
if (!BadPtr(parv[1]) && strcmp(parv[1], "-all") && stricmp(parv[1], me.name))
|
||||
if (!BadPtr(parv[1]) && stricmp(parv[1], "-all") && stricmp(parv[1], me.name))
|
||||
{
|
||||
|
||||
if (!IsAdmin(sptr) && !IsCoAdmin(sptr))
|
||||
|
||||
Reference in New Issue
Block a user