src/hg/gsid/gsidMember/bio.c 1.2

1.2 2009/04/14 07:20:01 galt
rearranging to get openssl to compile with gcc4, mainly by eliminating use of common.h and openssl together wherever possible
Index: src/hg/gsid/gsidMember/bio.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/gsid/gsidMember/bio.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 4 -r1.1 -r1.2
--- src/hg/gsid/gsidMember/bio.c	24 Jan 2007 02:54:44 -0000	1.1
+++ src/hg/gsid/gsidMember/bio.c	14 Apr 2009 07:20:01 -0000	1.2
@@ -1,12 +1,12 @@
 /* use bio to call openssl on https://host/url */
 
-#include "common.h"
-#include "dystring.h"
 #include "openssl/ssl.h"
 #include "openssl/err.h"
 
-boolean check_cert(SSL *ssl, char *host)
+#include "bio.h"
+
+int check_cert(SSL *ssl, char *host)
 {
 X509 *peer;
 char peer_CN[256];