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_config.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_config.c')
-rw-r--r-- | src/lib/libtls/tls_config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/tls_config.c b/src/lib/libtls/tls_config.c index 15e218b4e0..3efd0ddd57 100644 --- a/src/lib/libtls/tls_config.c +++ b/src/lib/libtls/tls_config.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: tls_config.c,v 1.65 2022/01/25 21:51:24 eric Exp $ */ | 1 | /* $OpenBSD: tls_config.c,v 1.66 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 | * |
@@ -22,6 +22,7 @@ | |||
22 | #include <fcntl.h> | 22 | #include <fcntl.h> |
23 | #include <pthread.h> | 23 | #include <pthread.h> |
24 | #include <stdlib.h> | 24 | #include <stdlib.h> |
25 | #include <string.h> | ||
25 | #include <unistd.h> | 26 | #include <unistd.h> |
26 | 27 | ||
27 | #include <tls.h> | 28 | #include <tls.h> |