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/baseMaskCommon.h src/hg/inc/baseMaskCommon.h
index a95b69e..e83f6c1 100644
--- src/hg/inc/baseMaskCommon.h
+++ src/hg/inc/baseMaskCommon.h
@@ -1,29 +1,29 @@
 /* baseMaskCommon - functions to create genomeRangeTree baseMask files to/from database tracks. */
 
 /* Copyright (C) 2008 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 BASEMASKCOMMON_H
 #define BASEMASKCOMMON_H
 
 
 void splitDbTable(char *chromDb, char *track, char **pDb, char **pTable);
 /* split the track into db name and table name. 
  * If no db specified then this will be chromDb.
  * Cannabalizes track. 
  * *pDb points a table in *track. *pTable points at database in *track or *chromDb. */
 
 void trackToBaseMask(char *db, char *track, char *chromDb, char *oBama, boolean quiet);
 /* Create a baseMask file oBama representing the 'track' in database 'db'.
  * If quiet = false, outputs number of based on overlap of chromosome ranges. */
 
 char *baseMaskCacheTrack(char *cacheDir, char *chromDb, char *db, char *table, boolean quiet, boolean logUpdateTimes);
 /* Return the file name of the cached baseMask for the specified table and db.
  * The chromInfo table is read from chromDb database.
  * The cached file will be saved in the file cacheDir/db/table.bama 
  * If logUpdateTimes is true then the table and cache update times will be
  * appended to cacheDir/db/table.bama.log
  * The bama file is written as a temp file then moved to the final name as 
  * an atomic operation. 
  * Return value must be freed with freeMem(). */
 
 #endif /* BASEMASKCOMMON_H */