summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-02-21 15:34:17 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2016-02-21 15:34:17 +0300
commit71a6e1e7df02e4abb6dfa498004dfc14f8070cc0 (patch)
tree71daaca7d935c237bce80228e3c1778e35a3d635 /NEWS
parentlibguile-ssh: Add missed "threads.h" include (diff)
downloadguile-ssh-71a6e1e7df02e4abb6dfa498004dfc14f8070cc0.tar.gz
popen.scm (open-remote-pipe): Bugfix: Don't request PTY
When PTY is requested, OpenSSH server merges stderr stream with stdout and the Guile-SSH channel reads all the output as stdout even if the executed command is failed. This patch fixes that. Reported by: David Thompson in <https://github.com/artyom-poptsov/guile-ssh/issues/2> * modules/ssh/popen.scm (open-remote-pipe): Bugfix: Don't request PTY. * AUTHORS, NEWS, THANKS: Update.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 219a95e..18d579a 100644
--- a/NEWS
+++ b/NEWS
@@ -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