]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/commitdiff
Fix the detect_bugs routine, which was failing to find the right bit
authorSimon Tatham <anakin@pobox.com>
Thu, 29 Mar 2001 13:40:03 +0000 (13:40 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 29 Mar 2001 13:40:03 +0000 (13:40 +0000)
of the version string :-)

git-svn-id: http://svn.tartarus.org/sgt/putty@1026 cda61777-01e9-0310-a592-d414129be87e

ssh.c

diff --git a/ssh.c b/ssh.c
index dba040bd940a0f3017e3f08b7a33fb17268f1969..8e5dce7a7fa0b532b1d718cebdfff12689aef87e 100644 (file)
--- 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;