diff options
| -rw-r--r-- | AUTHORS | 4 | ||||
| -rw-r--r-- | NEWS | 4 | ||||
| -rw-r--r-- | THANKS | 1 | ||||
| -rw-r--r-- | modules/ssh/popen.scm | 1 |
4 files changed, 7 insertions, 3 deletions
@@ -3,10 +3,10 @@ Authors of Guile-SSH See also files THANKS and ChangeLog. * Artyom V. Poptsov <poptsov.artyom@gmail.com> +* David Thompson <davet@gnu.org> + Bug reports, various comments and suggestions. * Ludovic Courtès <ludo@gnu.org> In subdirectory ssh, changes to: channel-type.c Bug reports, various comments and suggestions. - - @@ -7,6 +7,10 @@ Copyright (C) Artyom V. Poptsov <poptsov.artyom@gmail.com> are permitted in any medium without royalty provided the copyright notice and this notice are preserved. +* Unreleased +** Bugfixes +*** Don't merge stderr with stdout in remote pipes + * Changes in version 0.9.0 (2015-12-24) ** Bugfixes *** Fix a bug in distributed forms in handling of REPL errors @@ -8,6 +8,7 @@ authors list. Thanks to the following people who contributed to Guile-SSH through bug reports or patches: +* David Thompson <davet@gnu.org> * Ludovic Courtès <ludo@gnu.org> Thank you.
\ No newline at end of file diff --git a/modules/ssh/popen.scm b/modules/ssh/popen.scm index 12ef4ae..72e31ff 100644 --- a/modules/ssh/popen.scm +++ b/modules/ssh/popen.scm @@ -51,7 +51,6 @@ Returns newly created channel port with the specified MODE." (unless channel (throw 'guile-ssh-error "Could not create a channel" session command mode)) (channel-open-session channel) - (channel-request-pty channel) (channel-request-exec channel command) channel)) |
