6e5ee11ca95cd971984038cf65bae00d9c898707
galt
  Wed Jun 4 15:40:02 2014 -0700
Since we have git, it is easy to rename errabort.c to errAbort.c without losing any history.
diff --git src/lib/textOut.c src/lib/textOut.c
index 5bdb3b7..5e74751 100644
--- src/lib/textOut.c
+++ src/lib/textOut.c
@@ -1,22 +1,22 @@
 /* textOut - set up stdout to be HTTP text, file or compressed file. */
 
 /* Copyright (C) 2011 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "common.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "cheapcgi.h"
 #include "pipeline.h"
 #include "textOut.h"
 
 
 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");