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/lib/mafScore.c src/lib/mafScore.c
index 6cc2675..bd04cce 100644
--- src/lib/mafScore.c
+++ src/lib/mafScore.c
@@ -1,21 +1,21 @@
 /* Score mafs and subsets of maf. 
  * This module is from Webb Miller at PSU. 
  * Some description of maf scoring is included in hgLoadMaf.c comments*/
 
 /* 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 "maf.h"
 
 
 
 typedef struct gap_scores {
 	int E;
 	int O;
 } gap_scores_t;
 
 #define CLEN(s) (sizeof((s))-1)
 #define NACHARS 128
 #define SS(c,d) ss[(uchar)c][(uchar)d]
 #define GAP(w,x,y,z) gop[(gtype[w]<<6)+(gtype[x]<<4)+(gtype[y]<<2)+gtype[z]]