summaryrefslogtreecommitdiff
path: root/docs/man/man3/StrHashComp.3
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man/man3/StrHashComp.3')
-rw-r--r--docs/man/man3/StrHashComp.38
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/man/man3/StrHashComp.3 b/docs/man/man3/StrHashComp.3
index 9ef8b6982..1c6c04405 100644
--- a/docs/man/man3/StrHashComp.3
+++ b/docs/man/man3/StrHashComp.3
@@ -1,4 +1,4 @@
-.TH "StrHashComp" 3 "16 Apr 2005" "InspIRCd" \" -*- nroff -*-
+.TH "StrHashComp" 3 "20 Apr 2005" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
@@ -24,8 +24,10 @@ Definition at line 146 of file modules.cpp.
148 char a[MAXBUF],b[MAXBUF];
149 strlcpy(a,s1.c_str(),MAXBUF);
150 strlcpy(b,s2.c_str(),MAXBUF);
-151 return (strcasecmp(a,b) == 0);
-152 }
+151 strlower(a);
+152 strlower(b);
+153 return (strcasecmp(a,b) == 0);
+154 }
.fi