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/lib/seqWindow.c src/hg/lib/seqWindow.c
index 286abdc..43b701c 100644
--- src/hg/lib/seqWindow.c
+++ src/hg/lib/seqWindow.c
@@ -1,19 +1,19 @@
 /* seqWindow -- generic interface & implementations for fetching subranges of a sequence */
 
 /* Copyright (C) 2017 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 "hdb.h"
 #include "seqWindow.h"
 
 static void seqWindowUpdateRangeAndSeq(struct seqWindow *seqWin, char *seqName,
                                        uint start, uint end, char *seq)
 /* Update seqWin's window coordinates and sequence -- all fetch methods need to do this.
  * seq is *not* cloned, don't free it afterward! */
 {
 if (!sameOk(seqName, seqWin->seqName))
     {
     freeMem(seqWin->seqName);
     seqWin->seqName = cloneString(seqName);
     }