[session.c]
     explicitly define USE_PIPES to 1 to prevent redefinition warnings in
     portable on platforms that use pipes for everything.  From redhat @
     redhat.
This commit is contained in:
Darren Tucker 2014-01-19 15:28:01 +11:00
parent 2aca159d05
commit 293ee3c9f0
2 changed files with 6 additions and 2 deletions

View File

@ -3,6 +3,10 @@
- dtucker@cvs.openbsd.org 2014/01/17 06:23:24 - dtucker@cvs.openbsd.org 2014/01/17 06:23:24
[sftp-server.c] [sftp-server.c]
fix log message statvfs. ok djm fix log message statvfs. ok djm
- dtucker@cvs.openbsd.org 2014/01/18 09:36:26
[session.c]
explicitly define USE_PIPES to 1 to prevent redefinition warnings in
portable on platforms that use pipes for everything.
20140118 20140118
- (dtucker) [uidswap.c] Prevent unused variable warnings on Cygwin. Patch - (dtucker) [uidswap.c] Prevent unused variable warnings on Cygwin. Patch

View File

@ -1,4 +1,4 @@
/* $OpenBSD: session.c,v 1.268 2013/10/29 09:48:02 djm Exp $ */ /* $OpenBSD: session.c,v 1.269 2014/01/18 09:36:26 dtucker Exp $ */
/* /*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved * All rights reserved
@ -441,7 +441,7 @@ do_authenticated1(Authctxt *authctxt)
} }
} }
#define USE_PIPES #define USE_PIPES 1
/* /*
* This is called to fork and execute a command when we have no tty. This * This is called to fork and execute a command when we have no tty. This
* will call do_child from the child, and server_loop from the parent after * will call do_child from the child, and server_loop from the parent after