Add “bssl::” prefix to |UpRef| and |PushToStack| in fuzzer code.

Change-Id: Ie3ed310869f3068d5be8292448a27679fa91a7a7
Reviewed-on: https://boringssl-review.googlesource.com/29624
Reviewed-by: Adam Langley <agl@google.com>
Commit-Queue: Adam Langley <agl@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
diff --git a/fuzz/ssl_ctx_api.cc b/fuzz/ssl_ctx_api.cc
index 1566e79..ac6202d7 100644
--- a/fuzz/ssl_ctx_api.cc
+++ b/fuzz/ssl_ctx_api.cc
@@ -213,7 +213,7 @@
     assert(cert_.get() != nullptr);
 
     certs_.reset(sk_X509_new_null());
-    PushToStack(certs_.get(), UpRef(cert_));
+    bssl::PushToStack(certs_.get(), bssl::UpRef(cert_));
   }
 
   bssl::UniquePtr<EVP_PKEY> pkey_;