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/lib/cirTree.c src/lib/cirTree.c
index 48020ee..c564bf0 100644
--- src/lib/cirTree.c
+++ src/lib/cirTree.c
@@ -1,27 +1,27 @@
 /* cirTree chromosome id r tree.  Part of a system to index chromosome ranges - things of
  * form chrN:start-end.  Generally you'll be using the crTree module - which
  * makes use of this module and the bPlusTree module - rather than this module directly.
  * This module works with chromosomes mapped to small integers rather than chromosomes
  * as strings, saving space and speeding things up in the process, but requiring the
  * separate bPlusTree to map the names to IDs. 
  *   This module implements a one dimensional R-tree index treating the chromosome ID
  * as the most significant part of a two-part key, and the base position as the least 
  * significant part of the key. */
 
 /* Copyright (C) 2014 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 "common.h"
 #include "localmem.h"
 #include "sig.h"
 #include "udc.h"
 #include "cirTree.h"
 
 struct rTree
 /* Recursive range structure. */
     {
     struct rTree *next;	/* Next on same level. */
     struct rTree *children;	/* Child list. */
     struct rTree *parent;	/* Our parent if any. */
     bits32 startChromIx;	/* Starting chromosome. */
     bits32 startBase;		/* Starting base position. */