a4b689f71156777e8eb02a777a8bc447f4ea7b1a
angie
  Wed Apr 2 13:50:23 2014 -0700
Fixing what I believe was a misspelled function header in ed552b421.
diff --git src/hg/inc/jksql.h src/hg/inc/jksql.h
index 1f50151..99731cb 100644
--- src/hg/inc/jksql.h
+++ src/hg/inc/jksql.h
@@ -668,19 +668,20 @@
  * Adds the NOSQLINJ prefix. */
 #ifdef __GNUC__
 __attribute__((format(printf, 1, 2)))
 #endif
 ;
 
 void sqlCheckError(char *format, ...)
 /* A sql injection error has occurred. Check for settings and respond
  * as appropriate with error, warning, logOnly, ignore, dumpstack.
  * Then abort if needed. NOTE: unless it aborts, this function will return! */
 #ifdef __GNUC__
 __attribute__((format(printf, 1, 2)))
 #endif
 ;
 
-struct sqlConnection *sqlCanFailover(struct sqlConnection *sc);
-/* returns the failover connection of a connection or NULL. */
+struct sqlConnection *sqlFailoverConn(struct sqlConnection *sc);
+/* returns the failover connection of a connection or NULL.
+ * (Needed because the sqlConnection is not in the .h file) */
 
 #endif /* JKSQL_H */