* Minor cleanup of previous changes
authorArt Cancro <ajc@citadel.org>
Tue, 23 Jul 2002 15:40:54 +0000 (15:40 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 23 Jul 2002 15:40:54 +0000 (15:40 +0000)
webcit/ChangeLog
webcit/html2html.c

index a6fa7ec7e001c1e6807317b053312af11a0bc6fe..121036fc2da74afd80150b8f3f45ed1deadf54bb 100644 (file)
@@ -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 <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
index 705d7e76e709c88ee551423e9653c1f677b6967d..e754587b2b96148f8b79f61b84443f79400c0bdd 100644 (file)
@@ -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("</I></B></FONT></TD></TR></TABLE></TT></PRE></A><BR>\n");
-        */
+       /* A little trailing vertical whitespace... */
+       wprintf("<BR><BR>\n");
 
        /* Now give back the memory */
        free(msg);