summaryrefslogtreecommitdiff
path: root/sshconnect2.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-03-20 12:55:14 +1100
committerDamien Miller <djm@mindrot.org>2013-03-20 12:55:14 +1100
commit63b4bcd04e1c57b77eabb4e4d359508a4b2af685 (patch)
tree751bcf38b2b4d26e7b69df583b08ef969fb04548 /sshconnect2.c
parentaa86c3970f24fc22185a9561ae84eeae0c6d15cd (diff)
- (djm) [configure.ac log.c scp.c sshconnect2.c openbsd-compat/vis.c]
[openbsd-compat/vis.h] FreeBSD's strnvis isn't compatible with OpenBSD's so mark it as broken. Patch from des AT des.no
Diffstat (limited to 'sshconnect2.c')
-rw-r--r--sshconnect2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sshconnect2.c b/sshconnect2.c
index a306447b3..d6af0b940 100644
--- a/sshconnect2.c
+++ b/sshconnect2.c
@@ -40,7 +40,7 @@
40#include <stdio.h> 40#include <stdio.h>
41#include <string.h> 41#include <string.h>
42#include <unistd.h> 42#include <unistd.h>
43#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) 43#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
44#include <vis.h> 44#include <vis.h>
45#endif 45#endif
46 46