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/inc/joinMixer.h src/hg/inc/joinMixer.h
index 2f3e414..7c0b829 100644
--- src/hg/inc/joinMixer.h
+++ src/hg/inc/joinMixer.h
@@ -1,20 +1,20 @@
 /* joinMixer - plan 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. */
 
 #ifndef JOINMIXERH
 #define JOINMIXERH
 
 #include "hashJoin.h"
 
 struct joinMixer
 // Scheme for joining by sql and/or hashJoin(s).  Caller constructs sql query, provides
 // big row for use by hashJoins, and invokes hashJoins to get final output.
 {
     struct joinerPair *sqlRouteList;	// Route list of tables to be joined in mainTable sql query
     struct joinerDtf *sqlFieldList;	// List of fields to select in sql query
     struct hashJoin *hashJoins;		// List of hash-based table joiners init'd with big row ix
     uint *outIxs;			// Index of each output field in big row used by hashJoins
     uint bigRowSize;			// Size of big row (may include mysql output fields,