diff options
author | tb <> | 2025-02-04 14:00:05 +0000 |
---|---|---|
committer | tb <> | 2025-02-04 14:00:05 +0000 |
commit | f12ec6f3987bf283b3f7f03aee008034a85649f9 (patch) | |
tree | 18bbefbd17bee12a2dd8b91cc0fa7fcd45327269 /src | |
parent | 587eb12f2939f2de7ec3b59d80ce14dfa6c9e436 (diff) | |
download | openbsd-f12ec6f3987bf283b3f7f03aee008034a85649f9.tar.gz openbsd-f12ec6f3987bf283b3f7f03aee008034a85649f9.tar.bz2 openbsd-f12ec6f3987bf283b3f7f03aee008034a85649f9.zip |
SSL_select_next_proto: fix invalid octal escape by switching to hexadecimal
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3 b/src/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3 index 42f68e0a3a..2317c57af4 100644 --- a/src/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3 +++ b/src/lib/libssl/man/SSL_CTX_set_alpn_select_cb.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: SSL_CTX_set_alpn_select_cb.3,v 1.10 2024/07/11 13:50:44 tb Exp $ | 1 | .\" $OpenBSD: SSL_CTX_set_alpn_select_cb.3,v 1.11 2025/02/04 14:00:05 tb Exp $ |
2 | .\" OpenSSL 87b81496 Apr 19 12:38:27 2017 -0400 | 2 | .\" OpenSSL 87b81496 Apr 19 12:38:27 2017 -0400 |
3 | .\" OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100 | 3 | .\" OpenSSL b97fdb57 Nov 11 09:33:09 2016 +0100 |
4 | .\" | 4 | .\" |
@@ -49,7 +49,7 @@ | |||
49 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 49 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
50 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 50 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
51 | .\" | 51 | .\" |
52 | .Dd $Mdocdate: July 11 2024 $ | 52 | .Dd $Mdocdate: February 4 2025 $ |
53 | .Dt SSL_CTX_SET_ALPN_SELECT_CB 3 | 53 | .Dt SSL_CTX_SET_ALPN_SELECT_CB 3 |
54 | .Os | 54 | .Os |
55 | .Sh NAME | 55 | .Sh NAME |
@@ -215,7 +215,7 @@ variable. | |||
215 | .Pp | 215 | .Pp |
216 | For example: | 216 | For example: |
217 | .Bd -literal | 217 | .Bd -literal |
218 | const unsigned char *vector = "\e6" "spdy/1" "\e8" "http/1.1"; | 218 | const unsigned char *vector = "\ex06" "spdy/1" "\ex08" "http/1.1"; |
219 | unsigned int length = strlen(vector); | 219 | unsigned int length = strlen(vector); |
220 | .Ed | 220 | .Ed |
221 | .Pp | 221 | .Pp |