1
0
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:
stskeeps
2007-04-24 11:47:55 +00:00
parent cf6965e9e2
commit 3ca6c4d3bc
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
View File
@@ -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))