diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/bio/bss_conn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bio/bss_conn.c b/src/lib/libcrypto/bio/bss_conn.c index 3b0e3d3bdd..14f410f59d 100644 --- a/src/lib/libcrypto/bio/bss_conn.c +++ b/src/lib/libcrypto/bio/bss_conn.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bss_conn.c,v 1.41 2024/04/19 09:54:36 tb Exp $ */ | 1 | /* $OpenBSD: bss_conn.c,v 1.43 2025/06/02 12:18:21 jsg Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -68,9 +68,9 @@ | |||
68 | 68 | ||
69 | #include <openssl/bio.h> | 69 | #include <openssl/bio.h> |
70 | #include <openssl/buffer.h> | 70 | #include <openssl/buffer.h> |
71 | #include <openssl/err.h> | ||
72 | 71 | ||
73 | #include "bio_local.h" | 72 | #include "bio_local.h" |
73 | #include "err_local.h" | ||
74 | 74 | ||
75 | #define SOCKET_PROTOCOL IPPROTO_TCP | 75 | #define SOCKET_PROTOCOL IPPROTO_TCP |
76 | 76 | ||
@@ -141,7 +141,7 @@ conn_state(BIO *b, BIO_CONNECT *c) | |||
141 | } | 141 | } |
142 | for (; *p != '\0'; p++) { | 142 | for (; *p != '\0'; p++) { |
143 | if ((*p == ':') || (*p == '/')) | 143 | if ((*p == ':') || (*p == '/')) |
144 | break; | 144 | break; |
145 | } | 145 | } |
146 | 146 | ||
147 | i= *p; | 147 | i= *p; |