Fix typo in function name.

Partially fixes build with -Wmissing-prototypes.

Change-Id: I828bcfb49b23c5a9ea403038bc3fb76750556ef8
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
Reviewed-on: https://boringssl-review.googlesource.com/7514
Reviewed-by: David Benjamin <davidben@google.com>
This commit is contained in:
Piotr Sikora 2016-03-18 18:23:50 -07:00 committed by David Benjamin
parent cd4cf9a12e
commit f188f9dce8

View File

@ -250,7 +250,7 @@ int SSL_CTX_need_tmp_RSA(const SSL_CTX *ctx) {
return 0;
}
int SSL_need_rsa(const SSL *ssl) {
int SSL_need_tmp_RSA(const SSL *ssl) {
return 0;
}