a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/textOut.c src/lib/textOut.c
index 43cd144..d2791b4 100644
--- src/lib/textOut.c
+++ src/lib/textOut.c
@@ -1,24 +1,23 @@
 /* textOut - set up stdout to be HTTP text, file or compressed file. */
 
 #include "common.h"
 #include "errabort.h"
 #include "cheapcgi.h"
 #include "pipeline.h"
 #include "textOut.h"
 
-static char const rcsid[] = "$Id: textOut.c,v 1.3 2006/08/04 06:00:20 markd Exp $";
 
 static void textOutWarnHandler(char *format, va_list args)
 /* Text mode error message handler. */
 {
 char *hLine =
 "---------------------------------------------------------------------------\n";
 if (format != NULL) {
     fflush(stdout);
     fprintf(stdout, "%s", hLine);
     vfprintf(stdout, format, args);
     fprintf(stdout, "\n");
     fprintf(stdout, "%s", hLine);
     }
 }