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/cgilib/joinMixer.c src/hg/cgilib/joinMixer.c
index 9b5316a..518d941 100644
--- src/hg/cgilib/joinMixer.c
+++ src/hg/cgilib/joinMixer.c
@@ -1,20 +1,20 @@
 /* joinMixer - implement multiple joins by sql joins and/or hashJoins, depending on which
  * should work best for each joined table. */
 
 /* Copyright (C) 2015 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. */
 
 #include "joinMixer.h"
 #include "hdb.h"
 
 static void addUniqueJoinerDt(struct joinerDtf **pTableList, struct hash *uniqHash,
                               struct joinerDtf *dt, char *db)
 /* Use a string key into the hash to build up a unique list of cloned joinerDtf's with
  * ignored (possibly NULL) fields (table-only, hence "dt" not "dtf"). */
 {
 char dbTable[PATH_LEN];
 joinerDtfToSqlTableString(dt, db, dbTable, sizeof(dbTable));
 if (! hashLookup(uniqHash, dbTable))
     {
     slAddHead(pTableList, joinerDtfClone(dt));
     hashAdd(uniqHash, dbTable, NULL);