summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS4
-rw-r--r--NEWS4
-rw-r--r--THANKS1
-rw-r--r--modules/ssh/popen.scm1
4 files changed, 7 insertions, 3 deletions
diff --git a/AUTHORS b/AUTHORS
index 24163cc..33838af 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -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.
-
-
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
diff --git a/THANKS b/THANKS
index 67bb4dd..d16ae4a 100644
--- a/THANKS
+++ b/THANKS
@@ -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))