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/hgDropSplitTable/hgDropSplitTable.c src/hg/makeDb/hgDropSplitTable/hgDropSplitTable.c
index 29e463e..1bd1d97 100644
--- src/hg/makeDb/hgDropSplitTable/hgDropSplitTable.c
+++ src/hg/makeDb/hgDropSplitTable/hgDropSplitTable.c
@@ -1,53 +1,53 @@
 /* hgDropSplitTable - Drop a table, or drop 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(
   "hgDropSplitTable - Drop a table, or drop all tables in a split table\n"
   "usage:\n"
   "   hgDropSplitTable db tableRoo \n"
   );
 }
 
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void hgDropSplitTable(char *db, char *oldRoot)
 /* hgDropSplitTable - Drop a table, or drop 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)
     {
     sqlSafef(query, sizeof query, "DROP TABLE %s", table->name);
     sqlUpdate(conn, query);
     }
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 3)
     usage();
 hgDropSplitTable(argv[1], argv[2]);
 return 0;
 }