Remove fillins/openssl_util
The only user of the tiny utility class to clear the error stack
was verify_certificate_chain, which can have it in it's anonymous
namespace.
It was however, used to great effect as a horrible dirty cheat to get
us openssl/base.h during the conversion. That time is past, so just
let us include <openssl/base.h> normally, and get rid of this.
Bug: 668
Change-Id: Ie8537d5b1d6789acb35182f3d781f7505ad79109
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/64188
Reviewed-by: David Benjamin <davidben@google.com>
Commit-Queue: Bob Beck <bbe@google.com>
Auto-Submit: Bob Beck <bbe@google.com>
diff --git a/pki/ocsp.h b/pki/ocsp.h
index 334da79..213ec26 100644
--- a/pki/ocsp.h
+++ b/pki/ocsp.h
@@ -6,12 +6,12 @@
#define BSSL_PKI_OCSP_H_
#include <memory>
+#include <optional>
#include <string>
#include <vector>
-#include "fillins/openssl_util.h"
+#include <openssl/base.h>
-#include <optional>
#include "input.h"
#include "ocsp_revocation_status.h"
#include "ocsp_verify_result.h"