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/hg/lib/jksql.c src/hg/lib/jksql.c
index a08e6e1..511b031 100644
--- src/hg/lib/jksql.c
+++ src/hg/lib/jksql.c
@@ -1,30 +1,30 @@
 /*****************************************************************************
  * Copyright (C) 2000 Jim Kent.  This source code may be freely used         *
  * for personal, academic, and non-profit purposes.  Commercial use          *
  * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) *
  *****************************************************************************/
 /* jksql.c - Stuff to manage interface with SQL database. */
 
 /*
  * Configuration:
  */
 
 
 #include "common.h"
 #include "portable.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include <mysql.h>
 #include "dlist.h"
 #include "dystring.h"
 #include "jksql.h"
 #include "sqlNum.h"
 #include "hgConfig.h"
 #include "cheapcgi.h"
 
 /* a function to get mysql results, either mysql_use_result or mysql_store_result */
 /* a) mysql_use_result means that after a query, the results are stored on the server and return row-by-row 
  * b) mysql_store_result means that the results are returned together 
  * 
  * a) means less memory, b) longer transfer times (latency of network * number of rows)
  * */