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/pipeline.c src/lib/pipeline.c
index 271ed30..68e9f33 100644
--- src/lib/pipeline.c
+++ src/lib/pipeline.c
@@ -1,26 +1,26 @@
 /* pipeline.c - create a process pipeline that can be used for reading or
  * writing  */
 
 /* Copyright (C) 2013 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "pipeline.h"
 #include "common.h"
 #include "sqlNum.h"
 #include "dystring.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "portable.h"
 #include "linefile.h"
 #include <sys/types.h>
 #include <unistd.h>
 #include <sys/wait.h>
 #include <signal.h>
 
 enum procState
 /* process state, in order of transition */
 {
     procStateNew,  // plProc object created
     procStateRun,  // proccess running
     procStateDone  // process finished (ok or failed)
 };