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/gsid/gsidMember/bio.c src/hg/gsid/gsidMember/bio.c index 2b0313c..46dd0a8 100644 --- src/hg/gsid/gsidMember/bio.c +++ src/hg/gsid/gsidMember/bio.c @@ -1,19 +1,19 @@ /* use bio to call openssl on https://host/url */ /* Copyright (C) 2009 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 "openssl/ssl.h" #include "openssl/err.h" #include "bio.h" int check_cert(SSL *ssl, char *host) { X509 *peer; char peer_CN[256]; int verifyResult = SSL_get_verify_result(ssl); if (verifyResult != X509_V_OK) { fprintf(stderr,"Certificate doesn't verify, result=%d\n", verifyResult);