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/internet.c src/lib/internet.c
index 190178b..256a242 100644
--- src/lib/internet.c
+++ src/lib/internet.c
@@ -1,20 +1,20 @@
 /* internet - some stuff to make it easier to use
  * internet sockets and the like. */
 
 /* 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 "internet.h"
 
 boolean isIpv4Address(char *ipStr)
 /* Return TRUE if string is a properly formatted IPV4 string */
 {
 /* valid IPv4 text address? */
 struct in_addr addr;
 return (inet_pton(AF_INET, ipStr, &addr) == 1);
 }
 
 boolean isIpv6Address(char *ipStr)
 /* Return TRUE if string is a properly formatted IPV6 string */
 {
 /* valid IPv6 text address? */