simon-git: putty (master): Simon Tatham

Commits to Tartarus CVS repository. tartarus-commits at lists.tartarus.org
Fri Mar 25 16:36:35 GMT 2016


TL;DR:
  d060986 Configurable preference list for SSH host key types.
  52746ae Add some missing 'const' in ssh.c arrays.

Repository:     git://git.tartarus.org/simon/putty.git
On the web:     http://tartarus.org/~simon-git/gitweb/?p=putty.git
Branch updated: master
Committer:      Simon Tatham <anakin at pobox.com>
Date:           2016-03-25 16:36:35

commit d06098622ce0d7dbbf29185dcdae8ed8a4c99823
web diff http://tartarus.org/~simon-git/gitweb/?p=putty.git;a=commitdiff;h=d06098622ce0d7dbbf29185dcdae8ed8a4c99823;hp=28f67586f568a3ec0388f58b5a87fa5cfed1a637
Author: Simon Tatham <anakin at pobox.com>
Date:   Fri Mar 25 15:56:31 2016 +0000

    Configurable preference list for SSH host key types.
    
    Now we actually have enough of them to worry about, and especially
    since some of the types we support are approved by organisations that
    people might make their own decisions about whether to trust, it seems
    worth having a config list for host keys the same way we have one for
    kex types and ciphers.
    
    To make room for this, I've created an SSH > Host Keys config panel,
    and moved the existing host-key related configuration (manually
    specified fingerprints) into there from the Kex panel.

 config.c          |   60 +++++++++++++++++++++++-
 doc/config.but    |   41 ++++++++++++++++
 putty.h           |   13 ++++++
 settings.c        |   11 +++++
 ssh.c             |  135 +++++++++++++++++++++++++++++++++++++++++------------
 windows/winhelp.h |    1 +
 6 files changed, 231 insertions(+), 30 deletions(-)

commit 52746ae793c1407c9b1cb045b2f789f7f4e133ed
web diff http://tartarus.org/~simon-git/gitweb/?p=putty.git;a=commitdiff;h=52746ae793c1407c9b1cb045b2f789f7f4e133ed;hp=d06098622ce0d7dbbf29185dcdae8ed8a4c99823
Author: Simon Tatham <anakin at pobox.com>
Date:   Fri Mar 25 16:22:57 2016 +0000

    Add some missing 'const' in ssh.c arrays.
    
    I noticed this in passing while tinkering with the hostkey_algs array:
    these arrays are full of pointers-to-const, but are not also
    themselves declared const, which they should have been all along.

 ssh.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)



More information about the tartarus-commits mailing list