aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apropos.c
diff options
context:
space:
mode:
Diffstat (limited to 'apropos.c')
-rw-r--r--apropos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apropos.c b/apropos.c
index ae4cedca..b33855e1 100644
--- a/apropos.c
+++ b/apropos.c
@@ -1,4 +1,4 @@
-/* $Id: apropos.c,v 1.22 2011/11/29 10:53:42 kristaps Exp $ */
+/* $Id: apropos.c,v 1.23 2011/12/07 16:08:55 kristaps Exp $ */
/*
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -133,7 +133,7 @@ static int
cmp(const void *p1, const void *p2)
{
- return(strcmp(((const struct res *)p1)->title,
+ return(strcasecmp(((const struct res *)p1)->title,
((const struct res *)p2)->title));
}