e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/hg/hgsqladmin/hgsqladmin.c src/hg/hgsqladmin/hgsqladmin.c
index 4ff4576..774198c 100644
--- src/hg/hgsqladmin/hgsqladmin.c
+++ src/hg/hgsqladmin/hgsqladmin.c
@@ -1,22 +1,25 @@
 /* hgsqladmin - Wrapper around mysqladmin using passwords in .hg.conf. */
+
+/* Copyright (C) 2011 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
 #include "common.h"
 #include "options.h"
 #include "sqlProg.h"
 
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "hgsqladmin - Wrapper around mysqladmin using passwords in .hg.conf\n"
   );
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 if (argc < 2)
     usage();
 sqlExecProg("mysqladmin", NULL, argc-1, argv+1);
 return 0;  /* never reaches here */
 }