[BACK]Return to mansearch.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mansearch.c between version 1.82 and 1.84

version 1.82, 2019/07/01 22:56:24 version 1.84, 2023/04/28 19:11:03
Line 1 
Line 1 
 /*      $Id$ */  /* $Id$ */
 /*  /*
  * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013-2018 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2013-2018 Ingo Schwarze <schwarze@openbsd.org>
Line 220  mansearch(const struct mansearch *search,
Line 220  mansearch(const struct mansearch *search,
                 if (cur && search->firstmatch)                  if (cur && search->firstmatch)
                         break;                          break;
         }          }
         if (res != NULL)          if (res != NULL && cur > 1)
                 qsort(*res, cur, sizeof(struct manpage), manpage_compare);                  qsort(*res, cur, sizeof(struct manpage), manpage_compare);
         if (chdir_status && getcwd_status && chdir(buf) == -1)          if (chdir_status && getcwd_status && chdir(buf) == -1)
                 warn("%s", buf);                  warn("%s", buf);
Line 491  lstlen(const char *cp, size_t sep)
Line 491  lstlen(const char *cp, size_t sep)
   
 /*  /*
  * Print the NUL-terminated list of NUL-terminated strings   * Print the NUL-terminated list of NUL-terminated strings
  * into the buffer, seperating strings with sep.   * into the buffer, separating strings with sep.
  */   */
 static void  static void
 lstcat(char *buf, size_t *i, const char *cp, const char *sep)  lstcat(char *buf, size_t *i, const char *cp, const char *sep)

Legend:
Removed from v.1.82  
changed lines
  Added in v.1.84

CVSweb