[BACK]Return to apropos.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/Attic/apropos.c between version 1.18 and 1.19

version 1.18, 2013/12/31 00:40:19 version 1.19, 2013/12/31 03:41:09
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 38 
Line 39 
         char            *defpaths, *auxpaths;          char            *defpaths, *auxpaths;
         char            *conf_file;          char            *conf_file;
         char            *progname;          char            *progname;
           char            *outkey;
         extern char     *optarg;          extern char     *optarg;
         extern int       optind;          extern int       optind;
   
Line 54 
Line 56 
   
         auxpaths = defpaths = NULL;          auxpaths = defpaths = NULL;
         conf_file = NULL;          conf_file = NULL;
           outkey = NULL;
   
         while (-1 != (ch = getopt(argc, argv, "C:M:m:S:s:")))          while (-1 != (ch = getopt(argc, argv, "C:M:m:O:S:s:")))
                 switch (ch) {                  switch (ch) {
                 case ('C'):                  case ('C'):
                         conf_file = optarg;                          conf_file = optarg;
Line 66 
Line 69 
                 case ('m'):                  case ('m'):
                         auxpaths = optarg;                          auxpaths = optarg;
                         break;                          break;
                   case ('O'):
                           outkey = optarg;
                           break;
                 case ('S'):                  case ('S'):
                         search.arch = optarg;                          search.arch = optarg;
                         break;                          break;
Line 86 
Line 92 
         search.flags = whatis ? MANSEARCH_WHATIS : 0;          search.flags = whatis ? MANSEARCH_WHATIS : 0;
   
         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, outkey, &res, &sz);
         manpath_free(&paths);          manpath_free(&paths);
   
         if (0 == ch)          if (0 == ch)
                 goto usage;                  goto usage;
   
         for (i = 0; i < sz; i++) {          for (i = 0; i < sz; i++) {
                 printf("%s - %s\n", res[i].names, res[i].desc);                  printf("%s - %s\n", res[i].names,
                       NULL == outkey ? res[i].desc :
                       NULL == res[i].output ? "" : res[i].output);
                 free(res[i].file);                  free(res[i].file);
                 free(res[i].names);                  free(res[i].names);
                 free(res[i].desc);                  free(res[i].desc);
                   free(res[i].output);
         }          }
   
         free(res);          free(res);
         return(sz ? EXIT_SUCCESS : EXIT_FAILURE);          return(sz ? EXIT_SUCCESS : EXIT_FAILURE);
 usage:  usage:
         fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "          fprintf(stderr, "usage: %s [-C file] [-M path] [-m path] "
                           "[-O outkey] "
                         "[-S arch] [-s section]%s ...\n", progname,                          "[-S arch] [-s section]%s ...\n", progname,
                         whatis ? " name" : "\n               expression");                          whatis ? " name" : "\n               expression");
         return(EXIT_FAILURE);          return(EXIT_FAILURE);

Legend:
Removed from v.1.18  
changed lines
  Added in v.1.19