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/log.c src/lib/log.c
index 803fc56..953a991 100644
--- src/lib/log.c
+++ src/lib/log.c
@@ -1,24 +1,24 @@
 /* log.c - logging for servers, can log to a file and/or syslog.  Compile with
  * -DNO_SYSLOG for systems without syslog. */
 
 /* Copyright (C) 2013 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "common.h"
 #include "log.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "dystring.h"
 #include "options.h"
 #include "portable.h"
 
 #ifndef NO_SYSLOG
 #include <syslog.h>
 #endif
 #include <time.h>
 
 
 static char *gProgram = "unknown";  /* name of program */
 static boolean gSysLogOn = FALSE;   /* syslog logging enabled? */
 static FILE *gLogFh = NULL;         /* logging file */
 
 struct nameVal