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 58ff99d58fad59b51f2994cacba3fa4e05859323
Author: Mihai Moldovan <io...@ionic.de>
Date:   Sat Jan 28 18:14:56 2017 +0100

    src/sshmasterconnection.cpp: replace deprecated channel_free () function 
with ssh_channel_free ().
    
    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 564228a..40aaf89 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -600,6 +600,9 @@ x2goclient (4.1.0.0-0x2go1) UNRELEASED; urgency=medium
     - src/sshmasterconnection.cpp: replace deprecated channel_close ()
       function with ssh_channel_close (). Might break on ancient systems, but
       we don't care.
+    - src/sshmasterconnection.cpp: replace deprecated channel_free () function
+      with ssh_channel_free (). Might break on ancient systems, but we don't
+      care.
 
   [ Bernard Cafarelli ]
   * New upstream version (4.1.0.0):
diff --git a/src/sshmasterconnection.cpp b/src/sshmasterconnection.cpp
index fc7c069..21ab275 100644
--- a/src/sshmasterconnection.cpp
+++ b/src/sshmasterconnection.cpp
@@ -1801,7 +1801,7 @@ void SshMasterConnection::finalize ( int item )
 #ifdef DEBUG
         x2goDebug<<"Channel closed.";
 #endif
-        channel_free ( channel );
+        ssh_channel_free ( channel );
     }
     if ( tcpSocket>0 )
     {

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email 
on /srv/git/code.x2go.org/x2goclient.git
_______________________________________________
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits

Reply via email to