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/qa.c src/lib/qa.c
index d919f96..d5060fc 100644
--- src/lib/qa.c
+++ src/lib/qa.c
@@ -1,26 +1,26 @@
 /* qa - Modules to help do testing, especially on html based apps. */
 
 /* Copyright (C) 2011 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "common.h"
 #include "hash.h"
 #include "dystring.h"
 #include "portable.h"
 #include "htmlPage.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "errCatch.h"
 #include "htmshell.h"
 #include "qa.h"
 
 
 char *qaStringBetween(char *text, char *startPattern, char *endPattern)
 /* Return text that occurs between startPattern and endPattern,
  * or NULL if no startPattern.  (Will return up to 100 characters
  * after startPattern if there is no endPattern) */
 {
 char *startMid = stringIn(startPattern, text);
 if (startMid != NULL)
     {
     char *endMid;
     int midSize;