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/oneShot/testCart/cart.h src/hg/oneShot/testCart/cart.h
index 13ca46e..cfa2365 100644
--- src/hg/oneShot/testCart/cart.h
+++ src/hg/oneShot/testCart/cart.h
@@ -1,21 +1,21 @@
 /* cart - stuff to manage variables that persist from 
  * one invocation of a cgi script to another (variables
  * that are carted around).  */
 
 /* Copyright (C) 2001 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. */
 
 #ifndef CART_H
 #define CART_H
 
 struct cart
 /* A cart of settings that persist. */
    {
    struct cart *next;	/* Next in list. */
    unsigned int userId;	/* User ID in database. */
    unsigned int sessionId;	/* Session ID in database. */
    struct hash *hash;	/* String valued hash. */
    struct hash *exclude;	/* Null valued hash of variables not to save. */
    struct cartDb *userInfo;	/* Info on user. */
    struct cartDb *sessionInfo;	/* Info on session. */
    };