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/hgTracks/extTools.h src/hg/hgTracks/extTools.h
index d8f0c9c..a7c3476 100644
--- src/hg/hgTracks/extTools.h
+++ src/hg/hgTracks/extTools.h
@@ -1,19 +1,19 @@
 /* extTools -- code to parse list of external tools and redirect the user to them */
 
 /* Copyright (C) 2011 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 EXTTOOLS_H
 #define EXTTOOLS_H
 
 struct extTool
 /* describes an external tool */
 {
     struct extTool *next; /* next in singly linked list */
     char *tool;  	  /* internal ID of an external tool, e.g. primer3  */
     char *shortLabel;  	  /* shown in the drop down menu */
     char *longLabel;      /* label for mouse over */
     char *url;            /* target URL of the tool CGI */
     char *email;          /* email address of external tool */
     bool isHttpGet;      /* default is a POST request. Set to 1/on/true to make it a http GET request */
     int maxSize;          /* maximum size in bp that can be handled by tool or 0 for any */