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/userRegions.c src/hg/cgilib/userRegions.c
index 6795cd0..d2f40db 100644
--- src/hg/cgilib/userRegions.c
+++ src/hg/cgilib/userRegions.c
@@ -1,20 +1,20 @@
 /* userRegions: parse user regions entered as BED3, BED4 or chr:start-end
  * optionally followed by name. */
 
 /* 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 "common.h"
 #include "hui.h"
 #include "linefile.h"
 #include "trashDir.h"
 #include "userRegions.h"
 
 static boolean illegalCoordinate(char *db, char *chrom, int start, int end, char *line, int lineIx,
                                  struct dyString *dyWarn)
 /* verify start and end are legal for this chrom */
 {
 int maxEnd = hChromSize(db, chrom);
 if (start < 0)
     {
     dyStringPrintf(dyWarn, "line %d: '%s': chromStart (%d) less than zero\n",