On Friday 07 January 2011 00:17:37 you wrote: > I compared Wireshark traces between the two versions and the only > significant difference I can see (before the server sends a FIN) > is that with 0.4.7, both the client and server send New Keys requests, > whereas with 0.4.6, only the server does. > > Before I pursue this further, I'd like to know whether anyone else > has tested 0.4.7 with compression.
Hi Mark, could you do a git bisect to find the culprit? git clone git://git.libssh.org/projects/libssh.git cd libssh git checkout -b v0-4 origin/v0-4 git bisect start git bisect bad git bisect good release-0-4-7 <build libssh and test> If it works: git bisect good If it fails: git bisect bad It shows you the patch which broke it in ~5 steps. http://book.git-scm.com/5_finding_issues_-_git_bisect.html -- andreas
