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_conninfo.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_conninfo.c')
-rw-r--r-- | src/lib/libtls/tls_conninfo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/tls_conninfo.c b/src/lib/libtls/tls_conninfo.c index 4d9ae29e09..b2aadab083 100644 --- a/src/lib/libtls/tls_conninfo.c +++ b/src/lib/libtls/tls_conninfo.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls_conninfo.c,v 1.22 2021/01/05 15:57:38 tb Exp $ */ | 1 | /* $OpenBSD: tls_conninfo.c,v 1.23 2023/05/14 07:26:25 op Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2015 Joel Sing <jsing@openbsd.org> |
4 | * Copyright (c) 2015 Bob Beck <beck@openbsd.org> | 4 | * Copyright (c) 2015 Bob Beck <beck@openbsd.org> |
@@ -17,6 +17,7 @@ | |||
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <stdio.h> | 19 | #include <stdio.h> |
20 | #include <string.h> | ||
20 | 21 | ||
21 | #include <openssl/x509.h> | 22 | #include <openssl/x509.h> |
22 | 23 | ||