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/lav.c src/hg/lib/lav.c
index 017431d..c64e3c8 100644
--- src/hg/lib/lav.c
+++ src/hg/lib/lav.c
@@ -1,19 +1,19 @@
 /* lav.c - common lav file reading routines */
 
 /* 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 "lav.h"
 
 static void unexpectedEof(struct lineFile *lf)
 /* Squawk about unexpected end of file. */
 {
 errAbort("Unexpected end of file in %s", lf->fileName);
 }
 
 static void seekEndOfStanza(struct lineFile *lf)
 /* find end of stanza */
 {
 char *line;
 for (;;)
     {
     if (!lineFileNext(lf, &line, NULL))