Remove ssl_ok.

This is never used.

Change-Id: I560f04c0a6f140298ca42b8a0913ce954a2fdf7d
Reviewed-on: https://boringssl-review.googlesource.com/4789
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/ssl/internal.h b/ssl/internal.h
index f8104fd..0974b07 100644
--- a/ssl/internal.h
+++ b/ssl/internal.h
@@ -1000,7 +1000,6 @@
                                 int use_context);
 int tls1_alert_code(int code);
 int ssl3_alert_code(int code);
-int ssl_ok(SSL *s);
 
 int ssl_check_srvr_ecc_cert_and_alg(X509 *x, SSL *s);
 
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index c0e1315..79493aa 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -2396,8 +2396,6 @@
   return CRYPTO_get_ex_data(&s->ex_data, idx);
 }
 
-int ssl_ok(SSL *s) { return 1; }
-
 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx) {
   return ctx->cert_store;
 }