summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-06-22 17:55:12 +0000
committerrob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-06-22 17:55:12 +0000
commit2188f7af308dae65a5752c0af8d3188e7ada16f5 (patch)
tree18b5b97b280dc50abfeab5461d815117647f0503 /channels.c
parent6f8139e131cdd7ca5591279313b5e4bf0b508808 (diff)
BUILD : 1.7.4 (210) BUGS : N/A NOTES : Changed strcasecmp to stricmp
git-svn-id: svn://svn.anope.org/anope/trunk@210 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@152 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels.c b/channels.c
index 9e51ba9e6..dce7e5460 100644
--- a/channels.c
+++ b/channels.c
@@ -1457,7 +1457,7 @@ static void del_exception(Channel * chan, char *mask)
int reset = 0;
for (i = 0; i < chan->exceptcount; i++) {
- if ((!reset) && (strcasecmp(chan->excepts[i], mask) == 0)) {
+ if ((!reset) && (stricmp(chan->excepts[i], mask) == 0)) {
free(chan->excepts[i]);
reset = 1;
}