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

Diff for /mandoc/read.c between version 1.131 and 1.132

version 1.131, 2015/03/11 13:05:20 version 1.132, 2015/03/17 07:33:07
Line 29 
Line 29 
 #include <ctype.h>  #include <ctype.h>
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
   #include <signal.h>
 #include <stdarg.h>  #include <stdarg.h>
 #include <stdint.h>  #include <stdint.h>
 #include <stdio.h>  #include <stdio.h>
Line 846  mparse_open(struct mparse *curp, int *fd, const char *
Line 847  mparse_open(struct mparse *curp, int *fd, const char *
                         perror("dup");                          perror("dup");
                         exit((int)MANDOCLEVEL_SYSERR);                          exit((int)MANDOCLEVEL_SYSERR);
                 }                  }
                   signal(SIGPIPE, SIG_DFL);
                 execlp("gunzip", "gunzip", "-c", file, NULL);                  execlp("gunzip", "gunzip", "-c", file, NULL);
                 perror("exec");                  perror("exec");
                 exit((int)MANDOCLEVEL_SYSERR);                  exit((int)MANDOCLEVEL_SYSERR);

Legend:
Removed from v.1.131  
changed lines
  Added in v.1.132

CVSweb