9723799cf6f1a8fb714ae1493b224b8e91aebf09
tdreszer
Mon Jul 30 12:17:38 2012 -0700
Making final pass through tree of checkins as dictated by Jim. None of these changes should affect executables in any way. This pass is due to expanding fingerprint caused by kompare.
diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index 98ccd2f..8a46495 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -7775,32 +7775,31 @@
tableName = hTableForTrack(database, tdb->table);
conn = hAllocConnTrack(database, tdb);
}
if (tableName)
{
char *date = firstWordInLine(sqlTableUpdate(conn, tableName));
if (date != NULL)
printf("Data last updated: %s
\n", date);
}
hFreeConn(&conn);
}
void printBbiUpdateTime(time_t *timep)
/* for bbi files, print out the timep value */
{
- printf ("Data last updated: %s
\n",
- sqlUnixTimeToDate(timep, FALSE));
+ printf("Data last updated: %s
\n", sqlUnixTimeToDate(timep, FALSE));
}
#ifdef EXTRA_FIELDS_SUPPORT
static struct extraField *asFieldsGet(char *db, struct trackDb *tdb)
// returns the as style fields from a table or remote data file
{
struct extraField *asFields = NULL;
struct sqlConnection *conn = hAllocConnTrack(db, tdb);
struct asObject *as = asForTdb(conn, tdb);
hFreeConn(&conn);
if (as != NULL)
{
struct asColumn *asCol = as->columnList;
for (;asCol != NULL; asCol = asCol->next)
{