diff options
author | op <> | 2023-05-14 07:26:25 +0000 |
---|---|---|
committer | op <> | 2023-05-14 07:26:25 +0000 |
commit | 9b81b7b93a4b90e2cc81174947bef859a308dba7 (patch) | |
tree | 7076a62616faf2e4a7160b0b027a1e46eee66e16 /src/lib/libtls/tls_client.c | |
parent | 17822816765e09b0f009bef1da2b0f3877a33f02 (diff) | |
download | openbsd-9b81b7b93a4b90e2cc81174947bef859a308dba7.tar.gz openbsd-9b81b7b93a4b90e2cc81174947bef859a308dba7.tar.bz2 openbsd-9b81b7b93a4b90e2cc81174947bef859a308dba7.zip |
add missing #include <string.h>; ok tb@
Diffstat (limited to 'src/lib/libtls/tls_client.c')
-rw-r--r-- | src/lib/libtls/tls_client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/tls_client.c b/src/lib/libtls/tls_client.c index 1629697f8a..deb24ebc23 100644 --- a/src/lib/libtls/tls_client.c +++ b/src/lib/libtls/tls_client.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls_client.c,v 1.48 2021/10/21 08:38:11 tb Exp $ */ | 1 | /* $OpenBSD: tls_client.c,v 1.49 2023/05/14 07:26:25 op Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -25,6 +25,7 @@ | |||
25 | #include <limits.h> | 25 | #include <limits.h> |
26 | #include <netdb.h> | 26 | #include <netdb.h> |
27 | #include <stdlib.h> | 27 | #include <stdlib.h> |
28 | #include <string.h> | ||
28 | #include <unistd.h> | 29 | #include <unistd.h> |
29 | 30 | ||
30 | #include <openssl/err.h> | 31 | #include <openssl/err.h> |