diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-12-07 16:08:55 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-12-07 16:08:55 +0000 |
commit | f571e3813bff77e7998070e36b0d639923e7571d (patch) | |
tree | dde929d78653bfeb2d3bd9627a15db405330f75a /apropos.c | |
parent | 910ad63849bea2b09b02b8fd7dbf18f78869967c (diff) | |
download | mandoc-f571e3813bff77e7998070e36b0d639923e7571d.tar.gz |
Apropos and man.cgi should strcasecmp their output sorting.
man.cgi should sort in the first place -- it wasn't before.
Revert uppercasing of man.cgi title.
Diffstat (limited to 'apropos.c')
-rw-r--r-- | apropos.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); } |