From 620f0cafc4a77a6cb8e8b7356dd866881b401bcd Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 29 Mar 2001 13:40:03 +0000 Subject: [PATCH] Fix the detect_bugs routine, which was failing to find the right bit of the version string :-) git-svn-id: svn://svn.tartarus.org/sgt/putty@1026 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ssh.c b/ssh.c index dba040bd..8e5dce7a 100644 --- a/ssh.c +++ b/ssh.c @@ -1128,7 +1128,9 @@ static void ssh_detect_bugs(char *vstring) { char *imp; /* pointer to implementation part */ imp = vstring; imp += strcspn(imp, "-"); + if (*imp) imp++; imp += strcspn(imp, "-"); + if (*imp) imp++; ssh_remote_bugs = 0; -- 2.11.0