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_bio_cb.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_bio_cb.c')
-rw-r--r-- | src/lib/libtls/tls_bio_cb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/tls_bio_cb.c b/src/lib/libtls/tls_bio_cb.c index dad9d23efb..8a1edfd5e4 100644 --- a/src/lib/libtls/tls_bio_cb.c +++ b/src/lib/libtls/tls_bio_cb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls_bio_cb.c,v 1.20 2022/01/10 23:39:48 tb Exp $ */ | 1 | /* $OpenBSD: tls_bio_cb.c,v 1.21 2023/05/14 07:26:25 op Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2016 Tobias Pape <tobias@netshed.de> | 3 | * Copyright (c) 2016 Tobias Pape <tobias@netshed.de> |
4 | * | 4 | * |
@@ -17,6 +17,7 @@ | |||
17 | 17 | ||
18 | #include <fcntl.h> | 18 | #include <fcntl.h> |
19 | #include <stdlib.h> | 19 | #include <stdlib.h> |
20 | #include <string.h> | ||
20 | #include <unistd.h> | 21 | #include <unistd.h> |
21 | 22 | ||
22 | #include <openssl/bio.h> | 23 | #include <openssl/bio.h> |