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/makeDb/hgRenameSplitTable/hgRenameSplitTable.c src/hg/makeDb/hgRenameSplitTable/hgRenameSplitTable.c
index 754f3e7..925332a 100644
--- src/hg/makeDb/hgRenameSplitTable/hgRenameSplitTable.c
+++ src/hg/makeDb/hgRenameSplitTable/hgRenameSplitTable.c
@@ -1,54 +1,54 @@
 /* hgRenameSplitTable - Rename a table, or rename all tables in a split table. */
 
 /* Copyright (C) 2013 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 "hdb.h"
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "hgRenameSplitTable - Rename a table, or rename all tables in a split table\n"
   "usage:\n"
   "   hgRenameSplitTable db old new\n"
   );
 }
 
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void hgRenameSplitTable(char *db, char *oldRoot, char *newRoot)
 /* hgRenameSplitTable - Rename a table, or rename all tables in a split table. */
 {
 struct slName *tables, *table;
 char query[128];
 struct sqlConnection *conn;
 
 if (!hDbExists(db))
     errAbort("Non-existent database: %s", db);
 tables = hSplitTableNames(db, oldRoot);
 if (!tables)
     errAbort("Can't find table: %s\n", oldRoot);
 conn = sqlConnect(db);
 for (table = tables; table != NULL; table = table->next)
     {
     char *new = replaceChars(table->name, oldRoot, newRoot);
     sqlSafef(query, sizeof query, "ALTER TABLE %s RENAME TO %s", table->name, new);
     sqlUpdate(conn, query);
     }
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 4)
     usage();
 hgRenameSplitTable(argv[1], argv[2], argv[3]);
 return 0;
 }