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/encode3/encodeDataWarehouse/edwWebAuthLogout/edwWebAuthLogout.c src/hg/encode3/encodeDataWarehouse/edwWebAuthLogout/edwWebAuthLogout.c index 98f932c..6b416a2 100644 --- src/hg/encode3/encodeDataWarehouse/edwWebAuthLogout/edwWebAuthLogout.c +++ src/hg/encode3/encodeDataWarehouse/edwWebAuthLogout/edwWebAuthLogout.c @@ -1,18 +1,18 @@ /* edwWebAuthLogout - A tiny little program to help manage Persona logouts. Specifically * a little CGI that unsets the email cookie. */ /* Copyright (C) 2013 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" int main(int argc, char *argv[]) /* Process command line. */ { printf("Content-Type:text/plain\r\n"); printf("Set-Cookie: email=nobody; expires=Thu, 01 Jan 1970 00:00:00 GMT\r\n"); printf("Set-Cookie: sid=x; expires=Thu, 01 Jan 1970 00:00:00 GMT\r\n"); printf("\r\n"); printf("logged out\n"); return 0; }