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/tests/udcTest.c src/lib/tests/udcTest.c
index 4bf92bd..dc48ac9 100644
--- src/lib/tests/udcTest.c
+++ src/lib/tests/udcTest.c
@@ -1,27 +1,27 @@
 /* udcTest -- test the URL data cache */
 
 /* Copyright (C) 2014 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 // suggestions from Mark: 1. try setvbuf, to make FILE * unbuffered -- does that help?
 //                        2. *if* need to do own buffering, consider mmap()
 //                           (kernel handles buffering)
 
 #include <sys/wait.h>
 #include "common.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "options.h"
 #include "portable.h"
 #include "udc.h"
 
 
 static struct optionSpec options[] = {
     {"size",    OPTION_BOOLEAN},
     {"raBuf",    OPTION_BOOLEAN},
     {"fork",     OPTION_BOOLEAN},
     {"protocol", OPTION_STRING},
     {"seed",     OPTION_INT},
     {NULL, 0},
 };
 
 boolean raBuf = FALSE;   /* exercise the read-ahead buffer */