summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-03-28 11:07:01 +0100
committerGert Doering <gert@greenie.muc.de>2014-04-25 20:29:39 +0200
commit959d60789b6f0bd74296600f58f626cfa9738f78 (patch)
tree23e9eac0c8aab49076e840784aeb6b4efcf1b0fc /doc
parentcdbd56ceeae4ef6352e19814447d402d0b5468c0 (diff)
downloadopenvpn-959d60789b6f0bd74296600f58f626cfa9738f78.tar.gz
openvpn-959d60789b6f0bd74296600f58f626cfa9738f78.tar.xz
openvpn-959d60789b6f0bd74296600f58f626cfa9738f78.zip
Fix man page and OSCP script: tls_serial_{n} is decimal
Commit 7d5e26cbb53 fixed extracting serial but did not change the format, which always has been decimal. This patch fixes the manpage and OSCP.sh script to conform with the implementation. Acked-by: James Yonan <james@openvpn.net> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <1396001222-5033-1-git-send-email-arne@rfc2549.org> URL: http://article.gmane.org/gmane.network.openvpn.devel/8409 Signed-off-by: Gert Doering <gert@greenie.muc.de>
Diffstat (limited to 'doc')
-rw-r--r--doc/openvpn.86
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/openvpn.8 b/doc/openvpn.8
index b7d6a3d..ae3a4e0 100644
--- a/doc/openvpn.8
+++ b/doc/openvpn.8
@@ -6094,9 +6094,9 @@ where
is the verification level. Only set for TLS connections. Set prior
to execution of
.B \-\-tls-verify
-script. This is in the form of a hex string like "37AB46E0", which is
-suitable for doing serial-based OCSP queries (with OpenSSL, you have
-to prepend "0x" to the string). If something goes wrong while reading
+script. This is in the form of a decimal string like "933971680", which is
+suitable for doing serial-based OCSP queries (with OpenSSL, do not
+prepend "0x" to the string) If something goes wrong while reading
the value from the certificate it will be an empty string, so your
code should check that.
See the contrib/OCSP_check/OCSP_check.sh script for an example.