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/cirm/cdw/cdwRunDaemon/cdwRunDaemon.c src/hg/cirm/cdw/cdwRunDaemon/cdwRunDaemon.c
index 3919b2a..077fba5 100644
--- src/hg/cirm/cdw/cdwRunDaemon/cdwRunDaemon.c
+++ src/hg/cirm/cdw/cdwRunDaemon/cdwRunDaemon.c
@@ -1,22 +1,22 @@
 /* cdwRunDaemon - Run jobs on multiple processers in background.  This is done with
  * a combination of infrequent polling of the database, and a unix fifo which can be
  * sent a signal (anything ending with a newline actually) that tells it to go look
  * at database now. */
 
 /* Copyright (C) 2014 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. */
 
 /* Version history -
  *  v2 - making it so daemon only keeps current job in memory consulting db table always
  *       for next job.  This simplifies code and allows the daemon to respond to changes 
  *       the job table at the expense of spinning the DB daemon a little more often.  Also
  *       maintaining a new column, pid, that contains unix process id for the job. 
  *  v3 - put delay to default to 1, since seems to be needed when restarting if there are
  *       jobs in the queue. */
 
 #include <sys/wait.h>
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "portable.h"