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/inc/sqlProg.h src/hg/inc/sqlProg.h
index 70d2409..81dbf8f 100644
--- src/hg/inc/sqlProg.h
+++ src/hg/inc/sqlProg.h
@@ -1,20 +1,20 @@
 /* sqlProg - functions for building command line programs to deal with
  * sql databases.*/
 
 /* Copyright (C) 2010 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 SQLPROG_H
 #define SQLPROG_H
 
 void sqlExecProg(char *prog, char **progArgs, int userArgc, char *userArgv[]);
 /* Exec one of the sql programs using user and password from ~/.hg.conf.
  * progArgs is NULL-terminate array of program-specific arguments to add,
  * which maybe NULL. userArgv are arguments passed in from the command line.
  * The program is execvp-ed, this function does not return. */
 
 void sqlExecProgLocal(char *prog, char **progArgs, int userArgc, char *userArgv[]);
 /* 
  * Exec one of the sql programs using user and password defined in localDb.XXX variables from ~/.hg.conf 
  * progArgs is NULL-terminate array of program-specific arguments to add,
  * which maybe NULL. userArgv are arguments passed in from the command line.
  * The program is execvp-ed, this function does not return.