summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--includes.h2
-rw-r--r--session.c2
-rw-r--r--sftp.c2
4 files changed, 11 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 552e780ee..02e675c4e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -55,6 +55,13 @@
55 - markus@cvs.openbsd.org 2006/04/20 09:47:59 55 - markus@cvs.openbsd.org 2006/04/20 09:47:59
56 [sshconnect.c] 56 [sshconnect.c]
57 simplify; ok djm@ 57 simplify; ok djm@
58 - djm@cvs.openbsd.org 2006/04/20 21:53:44
59 [includes.h session.c sftp.c]
60 Switch from using pipes to socketpairs for communication between
61 sftp/scp and ssh, and between sshd and its subprocesses. This saves
62 a file descriptor per session and apparently makes userland ppp over
63 ssh work; ok markus@ deraadt@ (ID Sync only - portable makes this
64 decision on a per-platform basis)
58 65
5920060421 6620060421
60 - (djm) [Makefile.in configure.ac session.c sshpty.c] 67 - (djm) [Makefile.in configure.ac session.c sshpty.c]
@@ -4566,4 +4573,4 @@
4566 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 4573 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
4567 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 4574 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
4568 4575
4569$Id: ChangeLog,v 1.4313 2006/04/23 02:08:59 djm Exp $ 4576$Id: ChangeLog,v 1.4314 2006/04/23 02:10:49 djm Exp $
diff --git a/includes.h b/includes.h
index 00076f639..c038f410e 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: includes.h,v 1.39 2006/03/25 22:22:43 djm Exp $ */ 1/* $OpenBSD: includes.h,v 1.40 2006/04/20 21:53:44 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
diff --git a/session.c b/session.c
index bba3fa21f..caf750ab4 100644
--- a/session.c
+++ b/session.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: session.c,v 1.202 2006/03/25 13:17:02 djm Exp $ */ 1/* $OpenBSD: session.c,v 1.203 2006/04/20 21:53:44 djm Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
diff --git a/sftp.c b/sftp.c
index 31b71db2b..0cc3a470e 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.80 2006/03/27 23:15:46 djm Exp $ */ 1/* $OpenBSD: sftp.c,v 1.81 2006/04/20 21:53:44 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *