aboutsummaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2023-08-31 23:43:55 +0900
committerGitHub <noreply@github.com>2023-08-31 23:43:55 +0900
commit3784b274e9ec8843c0e30bb056d37809d130bfeb (patch)
tree1195a5c2536b5a30c20c7622512269c37e03714e /ext
parenta685991490b615d8b84460c3cd9d6def862212e1 (diff)
parent89a1c82dd0ddd6ad3210b1fac841930c683c7cf8 (diff)
downloadruby-openssl-3784b274e9ec8843c0e30bb056d37809d130bfeb.tar.gz
Merge pull request #676 from p8/fix/ocsp-documentation
Fix OCSP documentation
Diffstat (limited to 'ext')
-rw-r--r--ext/openssl/ossl_ocsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/openssl/ossl_ocsp.c b/ext/openssl/ossl_ocsp.c
index 82f80d4a..df986bb3 100644
--- a/ext/openssl/ossl_ocsp.c
+++ b/ext/openssl/ossl_ocsp.c
@@ -1701,7 +1701,7 @@ Init_ossl_ocsp(void)
* require 'net/http'
*
* http_response =
- * Net::HTTP.start ocsp_uri.hostname, ocsp.port do |http|
+ * Net::HTTP.start ocsp_uri.hostname, ocsp_uri.port do |http|
* http.post ocsp_uri.path, request.to_der,
* 'content-type' => 'application/ocsp-request'
* end