From 87e79b9b7e6367cecde3abacd041aaae8ec7709a Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 23 Jul 2002 15:40:54 +0000 Subject: [PATCH] * Minor cleanup of previous changes --- webcit/ChangeLog | 4 +++- webcit/html2html.c | 7 ++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index a6fa7ec7e..121036fc2 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 323.50 2002/07/23 15:40:54 ajc +* Minor cleanup of previous changes + Revision 323.49 2002/07/23 04:43:58 ajc * Updated message reading to use the new MSG4 command, so we can do output of various types of richtext (mainly HTML). @@ -872,4 +875,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/html2html.c b/webcit/html2html.c index 705d7e76e..e754587b2 100644 --- a/webcit/html2html.c +++ b/webcit/html2html.c @@ -57,8 +57,6 @@ void output_html(void) { msgstart = msg; msgend = &msg[total_length]; - fprintf(stderr, "msg looks like this:\n%s\n", ptr); - while (ptr < msgend) { /* Advance to next tag */ @@ -93,9 +91,8 @@ void output_html(void) { write(WC->http_sock, msgstart, strlen(msgstart)); - /* Close a bunch of tags that might have been opened - wprintf("
\n"); - */ + /* A little trailing vertical whitespace... */ + wprintf("

\n"); /* Now give back the memory */ free(msg); -- 2.30.2