[X2Go-Commits] [x2goclient] 13/18: src/sshmasterconnection.cpp: replace deprecated channel_close () function with ssh_channel_close ().
git-admin at x2go.org
git-admin at x2go.org
Wed Feb 22 09:10:05 CET 2017
This is an automated email from the git hooks/post-receive script.
x2go pushed a commit to branch feature/libssh-api-upgrade
in repository x2goclient.
commit efd41a909bdb69249f2ee1e7f26fbbb64dfab73e
Author: Mihai Moldovan <ionic at ionic.de>
Date: Sat Jan 28 18:13:28 2017 +0100
src/sshmasterconnection.cpp: replace deprecated channel_close () function with ssh_channel_close ().
Might break on ancient systems, but we don't care.
---
debian/changelog | 3 +++
src/sshmasterconnection.cpp | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/debian/changelog b/debian/changelog
index 19c75d1..d5fe8e6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -42,6 +42,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium
- src/sshmasterconnection.cpp: replace deprecated channel_send_eof ()
function with ssh_channel_send_eof (). Might break on ancient systems,
but we don't care.
+ - src/sshmasterconnection.cpp: replace deprecated channel_close ()
+ function with ssh_channel_close (). Might break on ancient systems, but
+ we don't care.
-- X2Go Release Manager <git-admin at x2go.org> Wed, 22 Feb 2017 07:13:10 +0100
diff --git a/src/sshmasterconnection.cpp b/src/sshmasterconnection.cpp
index fefa479..292c703 100644
--- a/src/sshmasterconnection.cpp
+++ b/src/sshmasterconnection.cpp
@@ -1797,7 +1797,7 @@ void SshMasterConnection::finalize ( int item )
#ifdef DEBUG
x2goDebug<<"EOF sent.";
#endif
- channel_close ( channel );
+ ssh_channel_close ( channel );
#ifdef DEBUG
x2goDebug<<"Channel closed.";
#endif
--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
More information about the x2go-commits
mailing list