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

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

version 1.19, 2017/02/16 15:12:32 version 1.23, 2021/10/15 15:04:02
Line 17 
Line 17 
  */   */
 #include "config.h"  #include "config.h"
   
 #if HAVE_CMSG_XPG42  #if NEED_XPG4_2
 #define _XPG4_2  #define _XPG4_2
 #endif  #endif
   
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 *)
                 __attribute__((noreturn));                  __attribute__((__noreturn__));
 ssize_t  sock_fd_write(int, int, int, int);  ssize_t  sock_fd_write(int, int, int, int);
 void     usage(void) __attribute__((noreturn));  void     usage(void) __attribute__((__noreturn__));
   
   
 void  void
Line 66  run_mandocd(int sockfd, const char *outtype, const cha
Line 62  run_mandocd(int sockfd, const char *outtype, const cha
         else          else
                 execlp("mandocd", "mandocd", "-T", outtype,                  execlp("mandocd", "mandocd", "-T", outtype,
                     "-I", defos, sockfdstr, (char *)NULL);                      "-I", defos, sockfdstr, (char *)NULL);
         err(1, "exec");          err(1, "exec(mandocd)");
 }  }
   
 ssize_t  ssize_t

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

CVSweb