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

Diff for /mandoc/Attic/manpage.c between version 1.5 and 1.6

version 1.5, 2013/12/27 18:51:25 version 1.6, 2013/12/31 03:41:14
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 Ingo Schwarze <schwarze@openbsd.org>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 89  main(int argc, char *argv[])
Line 90  main(int argc, char *argv[])
         search.deftype = TYPE_Nm | TYPE_Nd;          search.deftype = TYPE_Nm | TYPE_Nd;
   
         manpath_parse(&paths, conf_file, defpaths, auxpaths);          manpath_parse(&paths, conf_file, defpaths, auxpaths);
         ch = mansearch(&search, &paths, argc, argv, &res, &sz);          ch = mansearch(&search, &paths, argc, argv, NULL, &res, &sz);
         manpath_free(&paths);          manpath_free(&paths);
   
         if (0 == ch)          if (0 == ch)
Line 109  main(int argc, char *argv[])
Line 110  main(int argc, char *argv[])
                         i + 1, res[i].names, res[i].desc);                          i + 1, res[i].names, res[i].desc);
                 free(res[i].names);                  free(res[i].names);
                 free(res[i].desc);                  free(res[i].desc);
                   free(res[i].output);
         }          }
   
         if (0 == term) {          if (0 == term) {

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

CVSweb