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/gfNet.c src/lib/gfNet.c index e7fc17f..609698d 100644 --- src/lib/gfNet.c +++ src/lib/gfNet.c @@ -1,24 +1,24 @@ /* gfNet.c - Network dependent stuff for blat server. */ /* Copyright (C) 2011 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" -#include "errabort.h" +#include "errAbort.h" #include "genoFind.h" #include "net.h" int gfConnect(char *hostName, char *portName) /* Start connection with server. */ { /* Connect to server. */ int sd = netConnect(hostName, atoi(portName)); if (sd < 0) { errnoAbort("Sorry, the BLAT/iPCR server seems to be down. Please try " "again later."); } return sd; }