=================================================================== RCS file: /cvs/mandoc/Attic/apropos.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mandoc/Attic/apropos.c 2011/11/29 10:53:42 1.22 +++ mandoc/Attic/apropos.c 2011/12/07 16:08:55 1.23 @@ -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 * Copyright (c) 2011 Ingo Schwarze @@ -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)); }