diff options
author | Damien Miller <djm@mindrot.org> | 2013-03-20 02:55:14 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-03-20 02:55:14 +0100 |
commit | 63b4bcd04e1c57b77eabb4e4d359508a4b2af685 (patch) | |
tree | 751bcf38b2b4d26e7b69df583b08ef969fb04548 /scp.c | |
parent | - (tim) [configure.ac] OpenServer 5 wants lastlog even though it has none (diff) | |
download | openssh-63b4bcd04e1c57b77eabb4e4d359508a4b2af685.tar.xz openssh-63b4bcd04e1c57b77eabb4e4d359508a4b2af685.zip |
- (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 'scp.c')
-rw-r--r-- | scp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ #include <string.h> #include <time.h> #include <unistd.h> -#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) +#if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS) #include <vis.h> #endif |