4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/xmlToSql/tables.h src/hg/xmlToSql/tables.h
index 4aea918..d1f5fde 100644
--- src/hg/xmlToSql/tables.h
+++ src/hg/xmlToSql/tables.h
@@ -1,20 +1,20 @@
 /* Tables - the data structures for holding all the info about
  * a table, it's fields, and it's relationships to other tables. */
 
 /* Copyright (C) 2005 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 
 #ifndef TABLES_H
 #define TABLES_H
 
 struct table
 /* Information about one of the tables we are making. */
     {
     struct table *next;		/* Next in list. */
     char *name;			/* Name of table. */
     struct field *fieldList;	/* Information about each field. */
     struct hash *fieldHash;	/* Fields keyed by field name. */
     int fieldCount;		/* Count of fields, including made up ones. */
     struct hash *fieldMixedHash;/* Fields keyed by field mixed case name. */
     struct elStat *elStat;	/* Associated elStat structure. */
     struct dtdElement *dtdElement; /* Associated dtd element. */