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/bPlusTree.c src/lib/bPlusTree.c
index 1275f3e..4f5a999 100644
--- src/lib/bPlusTree.c
+++ src/lib/bPlusTree.c
@@ -1,17 +1,17 @@
 /* Copyright (C) 2013 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. */
 
 /* bptFile - B+ Trees.  These are a method of indexing data similar to binary trees, but 
  * with many children rather than just two at each node. They work well when stored on disk,
  * since typically only two or three disk accesses are needed to locate any particular
  * piece of data.  This implementation is *just* for disk based storage.  For memory
  * use the rbTree instead. Currently the implementation is just useful for data warehouse
  * type applications.  That is it implements a function to create a b+ tree from bulk data
  * (bptFileCreate) and a function to lookup a value given a key (bptFileFind) but not functions
  * to add or delete individual items.
  *
  * The layout of the file on disk is:
  *    header
  *    root node
  *    (other nodes)
  * In general when the tree is first built the higher level nodes are stored before the