diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-08-23 00:06:55 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-08-23 00:06:55 +0200 |
commit | 93e7e8f345367136b4c3881c6eb3d756a43fe148 (patch) | |
tree | fbad8c774170f6028660370d3928ff4eb7fe71ae /sftp.c | |
parent | - (djm) [ttymodes.c] bugzilla #1054: Fix encoding of _POSIX_VDISABLE, (diff) | |
download | openssh-93e7e8f345367136b4c3881c6eb3d756a43fe148.tar.xz openssh-93e7e8f345367136b4c3881c6eb3d756a43fe148.zip |
- (dtucker) [configure.ac defines.h includes.h sftp.c] Add support for
LynxOS, patch from Olli Savia (ops at iki.fi). ok djm@
Diffstat (limited to '')
-rw-r--r-- | sftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1295,7 +1295,7 @@ interactive_loop(int fd_in, int fd_out, char *file1, char *file2) xfree(dir); } -#if HAVE_SETVBUF +#if defined(HAVE_SETVBUF) && !defined(BROKEN_SETVBUF) setvbuf(stdout, NULL, _IOLBF, 0); setvbuf(infile, NULL, _IOLBF, 0); #else |