From af637c9e8eac503f105fce70dd7af7431af80195 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Tue, 17 Jun 2008 00:08:38 +0000 Subject: bug #00006 fix git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@172 7dcaeef0-15fb-0310-b436-a5af3365683c --- libssh/packet.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libssh/packet.c b/libssh/packet.c index bc867438..eb810fee 100644 --- a/libssh/packet.c +++ b/libssh/packet.c @@ -458,6 +458,7 @@ void packet_parse(SSH_SESSION *session){ channel_handle(session,type); case SSH2_MSG_IGNORE: + case SSH2_MSG_DEBUG: return; default: ssh_say(0,"Received unhandled msg %d\n",type); @@ -487,6 +488,8 @@ static int packet_wait1(SSH_SESSION *session,int type,int blocking){ case SSH_SMSG_EXITSTATUS: channel_handle1(session,type); break; + case SSH_MSG_DEBUG: + break; /* case SSH2_MSG_CHANNEL_CLOSE: packet_parse(session); break;; -- cgit v1.2.3