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

Diff for /mandoc/Attic/manpage.c between version 1.3 and 1.4

version 1.3, 2012/06/09 17:49:13 version 1.4, 2013/06/05 02:00:26
Line 17 
Line 17 
 #ifdef HAVE_CONFIG_H  #ifdef HAVE_CONFIG_H
 #include "config.h"  #include "config.h"
 #endif  #endif
 #include <sys/param.h>  
   
 #include <assert.h>  #include <assert.h>
 #include <getopt.h>  #include <getopt.h>
   #include <limits.h>
 #include <stdint.h>  #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 40  main(int argc, char *argv[])
Line 40  main(int argc, char *argv[])
         struct mansearch search;          struct mansearch search;
         struct manpage  *res;          struct manpage  *res;
         char            *conf_file, *defpaths, *auxpaths, *cp;          char            *conf_file, *defpaths, *auxpaths, *cp;
         char             buf[MAXPATHLEN];          char             buf[PATH_MAX];
         const char      *cmd;          const char      *cmd;
         struct manpaths  paths;          struct manpaths  paths;
         char            *progname;          char            *progname;
Line 132  main(int argc, char *argv[])
Line 132  main(int argc, char *argv[])
         }          }
 show:  show:
         cmd = res[i - 1].form ? "mandoc" : "cat";          cmd = res[i - 1].form ? "mandoc" : "cat";
         strlcpy(buf, res[i - 1].file, MAXPATHLEN);          strlcpy(buf, res[i - 1].file, PATH_MAX);
         free(res);          free(res);
   
         show(cmd, buf);          show(cmd, buf);

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

CVSweb