summaryrefslogtreecommitdiff
path: root/src/info2html/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/info2html/main.c')
-rw-r--r--src/info2html/main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/info2html/main.c b/src/info2html/main.c
index 8b9c9b90..398ae2af 100644
--- a/src/info2html/main.c
+++ b/src/info2html/main.c
@@ -57,6 +57,9 @@ if (!be_quiet)
}
+ /* hack, just send to stdout for now */
+ fprintf(stdout, "<BODY><HTML>\n");
+
/* big loop to identify sections of info files */
/* NEW PLAN - format on the fly */
/* No need to store all nodes, etc since we let web server */
@@ -92,7 +95,7 @@ if (!be_quiet)
/* now lets make some html */
/* first make sure the subdir for this info file exists */
dump_html_for_node( node );
- /* free_node(node); */
+
if (node)
{
if ( node->contents )
@@ -104,5 +107,6 @@ if (!be_quiet)
else
continue;
}
+ fprintf(stdout, "</BODY></HTML>\n");
return 0;
}