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/rqlToSql.c src/lib/rqlToSql.c
index 93c92be..70b9b47 100644
--- src/lib/rqlToSql.c
+++ src/lib/rqlToSql.c
@@ -1,20 +1,20 @@
 /* rqlToSql - convert queries in the sql-like rql query language into sql
  * statements that can be passed to a MySQL (or similar) server. */
 
 /* 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 "dystring.h"
 #include "rql.h"
 
 char *rqlParseToSqlWhereClause (struct rqlParse *p, boolean inComparison)
 /* Recursively convert an rqlParse into an equivalent SQL where clause (without the "where").
  * The RQL construction of just naming a field is converted to a SQL "is not NULL".
  * Leaks memory from a series of constructed and discarded strings. */
 {
 struct dyString *sqlClause = dyStringNew(0);
 struct rqlParse *nextPtr = NULL;
 switch (p->op)
     {
     case rqlOpUnknown: