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/tests/htmlPageTest.c src/lib/tests/htmlPageTest.c
index 41d25b8..714cb3b 100644
--- src/lib/tests/htmlPageTest.c
+++ src/lib/tests/htmlPageTest.c
@@ -1,46 +1,46 @@
 /* htmlPageTest - test some stuff in htmlPage module. */
 
 /* Copyright (C) 2004 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 "options.h"
 #include "htmlPage.h"
 #include "obscure.h"
 
 
 void usage()
 /* Explain usage and exit */
 {
 errAbort(
 "htmlPageTest - print some diagnostic info on page\n"
 "usage:\n"
 "   htmlPageTest file.html\n");
 }
 
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void htmlPageTest(char *fileName)
 /* Do some checks on file and print. */
 {
 char *html;
 struct htmlPage *page;
 struct htmlForm *form;
 readInGulp(fileName, &html, NULL);
 page = htmlPageParseNoHead(fileName, html);
 htmlPageValidateOrAbort(page);
 for (form = page->forms; form != NULL; form = form->next)
     htmlFormPrint(form, stdout);
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 2)
     usage();
 htmlPageTest(argv[1]);
 return 0;
 }