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/hgsqlTableDate/hgsqlTableDate.c src/hg/hgsqlTableDate/hgsqlTableDate.c
index 5455f6b..34f84c6 100644
--- src/hg/hgsqlTableDate/hgsqlTableDate.c
+++ src/hg/hgsqlTableDate/hgsqlTableDate.c
@@ -1,50 +1,50 @@
 /* hgsqlTableDate - touch file with date from table. */
 
 /* 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. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "jksql.h"
 #include "utime.h"
 #include "hdb.h"
 
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "hgsqlTableDate - touch file with date from table\n"
   "usage:\n"
   "   hgsqlTableDate database table file\n"
   );
 }
 
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void hgsqlTableDate(char *database, char *table, char *file)
 /* hgsqlTableDate - touch file with date from table. */
 {
 struct sqlConnection *conn = hAllocConn(database);
 time_t tableTime = sqlTableUpdateTime(conn, table);
 struct utimbuf buf;
 
 buf.actime = tableTime;
 buf.modtime = tableTime;
 
 if (utime(file, &buf) < 0)
     errAbort("utime failed. %s:%s\n",file, strerror(errno));
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 4)
     usage();
 hgsqlTableDate(argv[1],argv[2],argv[3]);
 return 0;
 }