summaryrefslogtreecommitdiff
path: root/src/lib/libtls/tls_util.c
diff options
context:
space:
mode:
authorop <>2023-05-14 07:26:25 +0000
committerop <>2023-05-14 07:26:25 +0000
commit9b81b7b93a4b90e2cc81174947bef859a308dba7 (patch)
tree7076a62616faf2e4a7160b0b027a1e46eee66e16 /src/lib/libtls/tls_util.c
parent17822816765e09b0f009bef1da2b0f3877a33f02 (diff)
downloadopenbsd-9b81b7b93a4b90e2cc81174947bef859a308dba7.tar.gz
openbsd-9b81b7b93a4b90e2cc81174947bef859a308dba7.tar.bz2
openbsd-9b81b7b93a4b90e2cc81174947bef859a308dba7.zip
add missing #include <string.h>; ok tb@
Diffstat (limited to 'src/lib/libtls/tls_util.c')
-rw-r--r--src/lib/libtls/tls_util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libtls/tls_util.c b/src/lib/libtls/tls_util.c
index d8103a506c..b276d2cfa7 100644
--- a/src/lib/libtls/tls_util.c
+++ b/src/lib/libtls/tls_util.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls_util.c,v 1.15 2021/08/16 13:54:38 tb Exp $ */ 1/* $OpenBSD: tls_util.c,v 1.16 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 * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> 4 * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org>
@@ -20,6 +20,7 @@
20#include <sys/stat.h> 20#include <sys/stat.h>
21 21
22#include <stdlib.h> 22#include <stdlib.h>
23#include <string.h>
23#include <unistd.h> 24#include <unistd.h>
24#include <fcntl.h> 25#include <fcntl.h>
25 26