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

Diff for /mandoc/Attic/man_action.c between version 1.22 and 1.23

version 1.22, 2009/10/30 05:58:37 version 1.23, 2009/10/31 06:10:58
Line 17 
Line 17 
 #include <sys/utsname.h>  #include <sys/utsname.h>
   
 #include <assert.h>  #include <assert.h>
 #include <errno.h>  
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
Line 149  post_TH(struct man *m)
Line 148  post_TH(struct man *m)
         n = n->next;          n = n->next;
         assert(n);          assert(n);
   
         errno = 0;  
         lval = strtol(n->string, &ep, 10);          lval = strtol(n->string, &ep, 10);
         if (n->string[0] != '\0' && *ep == '\0')          if (n->string[0] != '\0' && *ep == '\0')
                 m->meta.msec = (int)lval;                  m->meta.msec = (int)lval;

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

CVSweb