summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/session.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2014-01-18 09:36:27 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2014-01-18 09:36:27 +0000
commite07a199eed66ae08529781dbe9c53420750615c7 (patch)
treeb547e5e3c21de4c24ab3458839c50d80e3246975 /usr.bin/ssh/session.c
parenta954e4dc94b46b1babdef7686c7774085afd3bf4 (diff)
explicitly define USE_PIPES to 1 to prevent redefinition warnings in portable
on platforms that use pipes for everything.
Diffstat (limited to 'usr.bin/ssh/session.c')
-rw-r--r--usr.bin/ssh/session.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/session.c b/usr.bin/ssh/session.c
index 9118e75d456..9bbd8e2038c 100644
--- a/usr.bin/ssh/session.c
+++ b/usr.bin/ssh/session.c
@@ -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
* All rights reserved
@@ -424,7 +424,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
* will call do_child from the child, and server_loop from the parent after