Align SSL_set_{min,max}_version with upstream.

Upstream added these functions after we did but decided to change the
names slightly. I'm not sure why they wanted to add the "proto" in
there, but align with them nonetheless so the ecosystem only has one set
of these functions.

BUG=90

Change-Id: Ia9863c58c9734374092051f02952b112806040cc
Reviewed-on: https://boringssl-review.googlesource.com/11123
Reviewed-by: David Benjamin <davidben@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
diff --git a/tool/client.cc b/tool/client.cc
index f8d314e..04a217a 100644
--- a/tool/client.cc
+++ b/tool/client.cc
@@ -169,7 +169,7 @@
               args_map["-max-version"].c_str());
       return false;
     }
-    if (!SSL_CTX_set_max_version(ctx.get(), version)) {
+    if (!SSL_CTX_set_max_proto_version(ctx.get(), version)) {
       return false;
     }
   }
@@ -181,7 +181,7 @@
               args_map["-min-version"].c_str());
       return false;
     }
-    if (!SSL_CTX_set_min_version(ctx.get(), version)) {
+    if (!SSL_CTX_set_min_proto_version(ctx.get(), version)) {
       return false;
     }
   }