42cd42d52a9d964bf59af16964323dc9effe1bb9 angie Wed Jul 5 12:13:57 2017 -0700 Removing confusing "ASH: " prefixes from some diagnostic warning messages. diff --git src/hg/lib/jksql.c src/hg/lib/jksql.c index 6b0428d..a0f1017 100644 --- src/hg/lib/jksql.c +++ src/hg/lib/jksql.c @@ -1128,31 +1128,31 @@ conn, sp->host, /* host */ sp->user, /* user name */ sp->password, /* password */ database, /* database */ sp->port, /* port */ sp->socket, /* socket */ 0) /* flags */ == NULL) { monitorLeave(); monitorEnterTime = oldTime; if (abort) errAbort("Couldn't connect to database %s on %s as %s.\n%s", database, sp->host, sp->user, mysql_error(conn)); else if (sqlParanoid) - fprintf(stderr, "ASH: Couldn't connect to database %s on %s as %s. " + fprintf(stderr, "Couldn't connect to database %s on %s as %s. " "mysql: %s pid=%ld\n", database, sp->host, sp->user, mysql_error(conn), (long)getpid()); return NULL; } /* Make sure the db is correct in the connect, think usually happens if there * is a mismatch between MySQL library and code. If this happens, please * figure out what is going on. Contact markd if you need help. */ if (((conn->db != NULL) && !sameString(database, conn->db)) || ((conn->db == NULL) && (database != NULL))) errAbort("apparent mismatch between mysql.h used to compile jksql.c and libmysqlclient"); sc->db=cloneString(database); if (monitorFlags & JKSQL_TRACE) monitorPrint(sc, "SQL_CONNECT", "%s %s", sp->host, sp->user);