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

Diff for /mandoc/main.c between version 1.50 and 1.51

version 1.50, 2009/10/26 15:44:51 version 1.51, 2009/10/27 08:26:11
Line 119  main(int argc, char *argv[])
Line 119  main(int argc, char *argv[])
         struct buf       ln, blk;          struct buf       ln, blk;
         struct curparse  curp;          struct curparse  curp;
   
         bzero(&curp, sizeof(struct curparse));          memset(&curp, 0, sizeof(struct curparse));
   
         curp.inttype = INTT_AUTO;          curp.inttype = INTT_AUTO;
         curp.outtype = OUTT_ASCII;          curp.outtype = OUTT_ASCII;
Line 158  main(int argc, char *argv[])
Line 158  main(int argc, char *argv[])
         argc -= optind;          argc -= optind;
         argv += optind;          argv += optind;
   
         bzero(&ln, sizeof(struct buf));          memset(&ln, 0, sizeof(struct buf));
         bzero(&blk, sizeof(struct buf));          memset(&blk, 0, sizeof(struct buf));
   
         rc = 1;          rc = 1;
   

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51

CVSweb