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

Diff for /mandoc/catman.c between version 1.16 and 1.19

version 1.16, 2017/02/08 16:11:40 version 1.19, 2017/02/16 15:12:32
Line 41 
Line 41 
 #include <time.h>  #include <time.h>
 #include <unistd.h>  #include <unistd.h>
   
   #ifndef O_DIRECTORY
   #define O_DIRECTORY 0
   #endif
   
 int      process_manpage(int, int, const char *);  int      process_manpage(int, int, const char *);
 int      process_tree(int, int);  int      process_tree(int, int);
 void     run_mandocd(int, const char *, const char *)  void     run_mandocd(int, const char *, const char *)
Line 57  run_mandocd(int sockfd, const char *outtype, const cha
Line 61  run_mandocd(int sockfd, const char *outtype, const cha
         if (snprintf(sockfdstr, sizeof(sockfdstr), "%d", sockfd) == -1)          if (snprintf(sockfdstr, sizeof(sockfdstr), "%d", sockfd) == -1)
                 err(1, "snprintf");                  err(1, "snprintf");
         if (defos == NULL)          if (defos == NULL)
                 execlp("mandocd", "mandocd", "-T", outtype, sockfdstr, NULL);                  execlp("mandocd", "mandocd", "-T", outtype,
                       sockfdstr, (char *)NULL);
         else          else
                 execlp("mandocd", "mandocd", "-T", outtype,                  execlp("mandocd", "mandocd", "-T", outtype,
                     "-I", defos, sockfdstr, NULL);                      "-I", defos, sockfdstr, (char *)NULL);
         err(1, "exec");          err(1, "exec");
 }  }
   
Line 253  main(int argc, char **argv)
Line 258  main(int argc, char **argv)
 void  void
 usage(void)  usage(void)
 {  {
         fprintf(stderr, "usage: catman [-I os=name] [-T output] "          fprintf(stderr, "usage: %s [-I os=name] [-T output] "
             "srcdir dstdir\n");              "srcdir dstdir\n", BINM_CATMAN);
         exit(1);          exit(1);
 }  }

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

CVSweb