src/hg/hgGenome/maf.c 1.2
1.2 2010/05/11 01:43:24 kent
Refactoring to split the trackDb.tableName field into separate track and table fields. Similarly track.mapName field goes to the same track and table fields.
Index: src/hg/hgGenome/maf.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgGenome/maf.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 4 -r1.1 -r1.2
--- src/hg/hgGenome/maf.c 5 Jun 2007 23:48:09 -0000 1.1
+++ src/hg/hgGenome/maf.c 11 May 2010 01:43:24 -0000 1.2
@@ -27,9 +27,9 @@
safecpy(setting, sizeof setting, track->type);
char *type = nextWord(&p);
if (sameString(type, "maf") || sameString(type, "wigMaf"))
- if (sameString(track->tableName, table))
+ if (sameString(track->table, table))
return TRUE;
return FALSE;
}