summaryrefslogtreecommitdiff
path: root/src/xline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xline.cpp')
-rw-r--r--src/xline.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xline.cpp b/src/xline.cpp
index 716153b0c..da03c0654 100644
--- a/src/xline.cpp
+++ b/src/xline.cpp
@@ -145,6 +145,8 @@ struct StrHashComp
char a[MAXBUF],b[MAXBUF];
strlcpy(a,s1.c_str(),MAXBUF);
strlcpy(b,s2.c_str(),MAXBUF);
+ strlower(a);
+ strlower(b);
return (strcasecmp(a,b) == 0);
}