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

Diff for /mandoc/Attic/apropos.c between version 1.38 and 1.40

version 1.38, 2014/04/11 15:46:52 version 1.40, 2014/08/10 23:54:41
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifdef HAVE_CONFIG_H  
 #include "config.h"  #include "config.h"
 #endif  
 #include <sys/param.h>  #include <sys/param.h>
   #include <sys/types.h>
   
 #include <assert.h>  #include <assert.h>
 #include <getopt.h>  #include <getopt.h>
Line 31 
Line 31 
 #include "manpath.h"  #include "manpath.h"
 #include "mansearch.h"  #include "mansearch.h"
   
   
 int  int
 main(int argc, char *argv[])  main(int argc, char *argv[])
 {  {
Line 63  main(int argc, char *argv[])
Line 64  main(int argc, char *argv[])
   
         while (-1 != (ch = getopt(argc, argv, "C:M:m:O: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;
                         break;                          break;
                 case ('M'):                  case 'M':
                         defpaths = optarg;                          defpaths = optarg;
                         break;                          break;
                 case ('m'):                  case 'm':
                         auxpaths = optarg;                          auxpaths = optarg;
                         break;                          break;
                 case ('O'):                  case 'O':
                         outkey = optarg;                          outkey = optarg;
                         break;                          break;
                 case ('S'):                  case 'S':
                         search.arch = optarg;                          search.arch = optarg;
                         break;                          break;
                 case ('s'):                  case 's':
                         search.sec = optarg;                          search.sec = optarg;
                         break;                          break;
                 default:                  default:

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.40

CVSweb