Remove a redundant while-loop condition when reading RFC822-style
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 14 Jul 2013 10:46:55 +0000 (10:46 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 14 Jul 2013 10:46:55 +0000 (10:46 +0000)
commit1ea566c3e96413d7edb40c50b0f7c7f8a5536079
tree96427cd6578595487fba8395bc17528b18013578
parentb1ad43d74907dcfa9a9a880f41e4c8f34d24d27a
Remove a redundant while-loop condition when reading RFC822-style
header text from a PuTTY key file.

(It's silly to have both while (len > 0) at the top of the loop _and_
an if (len == 0) return in the middle, and in fact the former was the
erroneous one since it would have prohibited a 39-character header,
which I intended to be permitted.)

git-svn-id: svn://svn.tartarus.org/sgt/putty@9926 cda61777-01e9-0310-a592-d414129be87e
sshpubk.c