diff options
author | June McEnroe <june@causal.agency> | 2020-07-27 23:56:51 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-30 19:02:32 -0400 |
commit | 663d6c44d8e83109686313a439c235209180531e (patch) | |
tree | b4b2487d4b809ad6a8742082ba22073a2df784ea | |
parent | tls_util: #include <string.h> (diff) | |
download | libretls-663d6c44d8e83109686313a439c235209180531e.tar.gz libretls-663d6c44d8e83109686313a439c235209180531e.zip |
tls_client: #include <string.h>
Diffstat (limited to '')
-rw-r--r-- | tls_client.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tls_client.c b/tls_client.c index 04e4402..0743495 100644 --- a/tls_client.c +++ b/tls_client.c @@ -25,6 +25,7 @@ #include <limits.h> #include <netdb.h> #include <stdlib.h> +#include <string.h> #include <unistd.h> #include <openssl/err.h> |