[BACK]Return to man_html.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/man_html.c between version 1.52 and 1.53

version 1.52, 2014/04/20 16:44:44 version 1.53, 2014/04/20 20:17:36
Line 24 
Line 24 
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  #include "mandoc.h"
   #include "mandoc_aux.h"
 #include "out.h"  #include "out.h"
 #include "html.h"  #include "html.h"
 #include "man.h"  #include "man.h"
Line 296 
Line 297 
 static void  static void
 man_root_pre(MAN_ARGS)  man_root_pre(MAN_ARGS)
 {  {
           char             b[BUFSIZ];
         struct htmlpair  tag[3];          struct htmlpair  tag[3];
         struct tag      *t, *tt;          struct tag      *t, *tt;
         char             b[BUFSIZ], title[BUFSIZ];          char            *title;
   
         b[0] = 0;          b[0] = 0;
         if (man->vol)          if (man->vol)
Line 306 
Line 308 
   
         assert(man->title);          assert(man->title);
         assert(man->msec);          assert(man->msec);
         snprintf(title, BUFSIZ - 1, "%s(%s)", man->title, man->msec);          mandoc_asprintf(&title, "%s(%s)", man->title, man->msec);
   
         PAIR_SUMMARY_INIT(&tag[0], "Document Header");          PAIR_SUMMARY_INIT(&tag[0], "Document Header");
         PAIR_CLASS_INIT(&tag[1], "head");          PAIR_CLASS_INIT(&tag[1], "head");
Line 337 
Line 339 
         print_otag(h, TAG_TD, 2, tag);          print_otag(h, TAG_TD, 2, tag);
         print_text(h, title);          print_text(h, title);
         print_tagq(h, t);          print_tagq(h, t);
           free(title);
 }  }
   
 static void  static void

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53