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/hashJoin.c src/hg/cgilib/hashJoin.c
index 06ca10b..0994857 100644
--- src/hg/cgilib/hashJoin.c
+++ src/hg/cgilib/hashJoin.c
@@ -1,20 +1,20 @@
 /* hashJoin - join one or more columns of a hashed database table to an externally provided
  * char **row that contains the key and empty slot(s) for the column value(s) */
 
 /* 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 "hashJoin.h"
 #include "hdb.h"
 #include "obscure.h"
 
 struct hashJoin
 // Implements table join as a hash lookup: the key is taken from some column of an externally
 // provided row, and one or more values are retrieved and then stored in specified columns
 // of the external row.  If a key has more than one set of matching columns, then each
 // column's values are glommed into a comma-separated list for that column in the external row.
 {
     struct hashJoin *next;
     struct hash *hash;			// Hash some kind of key to char **row of column values
     uint extRowKeyIx;			// Index of hash key to take from external row
     uint valCount;			// Number of columns in hash value rows