diff options
author | Damien Miller <djm@mindrot.org> | 2001-04-14 00:28:42 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-04-14 00:28:42 +1000 |
commit | 402b3319456c1f0da0822319c3813c68e155726d (patch) | |
tree | b9e1a10032f4f13327ba72e1f2a69e6ceaca776a /openbsd-compat | |
parent | 6e77a538ca63f2ecbab74656839e77084a2db425 (diff) | |
download | openssh-git-402b3319456c1f0da0822319c3813c68e155726d.tar.gz |
- Cygwin sftp/sftp-server binary mode patch from Corinna Vinschen
<vinschen@redhat.com>
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/bsd-cygwin_util.c | 3 | ||||
-rw-r--r-- | openbsd-compat/bsd-cygwin_util.h | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/openbsd-compat/bsd-cygwin_util.c b/openbsd-compat/bsd-cygwin_util.c index ea981be5..36f13e3f 100644 --- a/openbsd-compat/bsd-cygwin_util.c +++ b/openbsd-compat/bsd-cygwin_util.c @@ -15,12 +15,11 @@ #include "includes.h" -RCSID("$Id: bsd-cygwin_util.c,v 1.3 2001/02/18 01:30:56 djm Exp $"); +RCSID("$Id: bsd-cygwin_util.c,v 1.4 2001/04/13 14:28:42 djm Exp $"); #ifdef HAVE_CYGWIN #include <fcntl.h> -#include <io.h> #include <stdlib.h> #include <sys/vfs.h> #include <windows.h> diff --git a/openbsd-compat/bsd-cygwin_util.h b/openbsd-compat/bsd-cygwin_util.h index e2d4b4da..7879501e 100644 --- a/openbsd-compat/bsd-cygwin_util.h +++ b/openbsd-compat/bsd-cygwin_util.h @@ -13,13 +13,15 @@ * binary mode on Windows systems. */ -/* $Id: bsd-cygwin_util.h,v 1.3 2001/02/18 01:30:56 djm Exp $ */ +/* $Id: bsd-cygwin_util.h,v 1.4 2001/04/13 14:28:43 djm Exp $ */ #ifndef _BSD_CYGWIN_UTIL_H #define _BSD_CYGWIN_UTIL_H #ifdef HAVE_CYGWIN +#include <io.h> + int binary_open(const char *filename, int flags, ...); int binary_pipe(int fd[2]); int check_nt_auth(int pwd_authenticated, uid_t uid); |