aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2014-02-14 10:32:30 +0100
committerAndreas Schneider <asn@cryptomilk.org>2014-02-14 10:33:07 +0100
commit2a1cb323f7d88331c83980e2a522cf470a0f0ef5 (patch)
tree8a20737d790a2b3e280f168afc70a389a1af4c53 /examples
parent4463d89a4a893dc67a98b2a3587172117ab1f313 (diff)
downloadlibssh-2a1cb323f7d88331c83980e2a522cf470a0f0ef5.tar.gz
libssh-2a1cb323f7d88331c83980e2a522cf470a0f0ef5.tar.xz
libssh-2a1cb323f7d88331c83980e2a522cf470a0f0ef5.zip
examples: Add missing include on FreeBSD.
Diffstat (limited to 'examples')
-rw-r--r--examples/samplesshd-tty.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/samplesshd-tty.c b/examples/samplesshd-tty.c
index 05d7c644..5e9e56ce 100644
--- a/examples/samplesshd-tty.c
+++ b/examples/samplesshd-tty.c
@@ -31,6 +31,9 @@ clients must be made or how a client should react.
#ifdef HAVE_UTIL_H
#include <util.h>
#endif
+#ifdef HAVE_LIBUTIL_H
+#include <libutil.h>
+#endif
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif