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/blatz/client.c src/blatz/client.c
index 685ad5f..ae667e5 100644
--- src/blatz/client.c
+++ src/blatz/client.c
@@ -1,24 +1,24 @@
 /* blatz client main routine.  The server does almost all the 
  * work.  This just loads DNA, sends it to the server, and
  * prints the response.  It also allows most of the server
  * alignment options to be overridden from the command line. */
 /* Copyright 2005 Jim Kent.  All rights reserved. */
 
 #include "common.h"   /* Compiler directives. Strings. Lists. */
 #include "options.h"  /* Command line option handling. */
-#include "errabort.h" /* Error and warning handling. */
+#include "errAbort.h" /* Error and warning handling. */
 #include "dnautil.h"  /* Byte <-> 2 bit conversion, reverseComplement etc. */
 #include "dnaseq.h"   /* Sequence, name, and size in a struct. */
 #include "obscure.h"  /* Handy eclectic utility collection. */
 #include "fa.h"       /* Read/write fasta sequence files. */
 #include "dnaLoad.h"  /* Read write dna sequences in many formats. */
 #include "net.h"      /* Network i/o, mostly TCP/IP oriented. */
 #include "bzp.h"      /* Blatz parameter structure. */
 #include "blatz.h"    /* Alignment routines. */
 
 int port = bzpDefaultPort;       /* Server TCP/IP port. */
 char *host = "localhost";        /* Name of computer server is running on. */
 
 static void usage()
 /* Explain usage and exit. */
 {