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/jpegSize.c src/lib/jpegSize.c
index d197000..59259c3 100644
--- src/lib/jpegSize.c
+++ src/lib/jpegSize.c
@@ -1,20 +1,20 @@
 /* jpegSize - read a jpeg header and figure out dimensions of image.
  * Adapted by Galt Barber from Matthias Wandel's jhead program */
 
 /* 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 "jpegSize.h"
 
 
 /* sections containing width and height     */
 #define M_SOF0  0xC0            /* Start Of Frame N                        */
 #define M_SOF1  0xC1            /* N indicates which compression process   */
 #define M_SOF2  0xC2            /* Only SOF0-SOF2 are now in common use    */
 #define M_SOF3  0xC3
 #define M_SOF5  0xC5            /* NB: codes C4 and CC are NOT SOF markers */
 #define M_SOF6  0xC6
 #define M_SOF7  0xC7
 #define M_SOF9  0xC9
 #define M_SOF10 0xCA
 #define M_SOF11 0xCB