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/tests/testQuotedP.c src/lib/tests/testQuotedP.c
index 9f3fe59..d122688 100644
--- src/lib/tests/testQuotedP.c
+++ src/lib/tests/testQuotedP.c
@@ -1,25 +1,25 @@
 /* Copyright (C) 2006 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 "quotedP.h"
 
 int main(int argc, char *argv[])
 {
 char *encoded = NULL;
 char *decoded = NULL;
 if (argc != 2)
 errAbort("%s: Specify a string to encode/decode on commandline using quotes.\n"
        , argv[0]);
 	    
 encoded = quotedPrintableEncode(argv[1]);
 decoded = quotedPrintableDecode(argv[1]);
 
 printf("original input: [%s]\nquoted-printable encoding: [%s]\nquoted-p decoding: [%s]\n", argv[1], encoded, decoded);
 
 freez(&encoded);
 freez(&decoded);
 
 return 0;
 }