aboutsummaryrefslogtreecommitdiff
path: root/src/auth.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2019-10-30 14:20:58 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-11-04 09:46:53 +0100
commit4a113159b2f3f22f5e73d982c638c3288b24e821 (patch)
treec028a253633ec03938bcce41fed662a4f80f67b3 /src/auth.c
parenta4b95268eef8283c7edaba69d6fe597cf2b754af (diff)
downloadlibssh-4a113159b2f3f22f5e73d982c638c3288b24e821.tar.gz
libssh-4a113159b2f3f22f5e73d982c638c3288b24e821.tar.xz
libssh-4a113159b2f3f22f5e73d982c638c3288b24e821.zip
auth: Add missing include for explicit_bzero()
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Diffstat (limited to 'src/auth.c')
-rw-r--r--src/auth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/auth.c b/src/auth.c
index 5eabeb82..edc8ef0b 100644
--- a/src/auth.c
+++ b/src/auth.c
@@ -25,6 +25,7 @@
#include "config.h"
#include <stdio.h>
+#include <string.h>
#ifndef _WIN32
#include <netinet/in.h>