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/jsonQuery.c src/lib/jsonQuery.c
index fdb0cf3..deb8116 100644
--- src/lib/jsonQuery.c
+++ src/lib/jsonQuery.c
@@ -1,19 +1,19 @@
 /* jsonQuery - simple path syntax for retrieving specific descendants of a jsonElement. */
 
 /* Copyright (C) 2018 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 "hash.h"
 #include "jsonQuery.h"
 
 static const char *findEndBracket(const char *path)
 /* Return a pointer to the right bracket matching the first left bracket that we encounter. */
 {
 if (path == NULL)
     return NULL;
 const char *end = NULL;
 int leftCount = 0, rightCount = 0;
 int i;
 for (i = 0;  path[i] != '\0';  i++)