simon-git: putty (master): Simon Tatham
Commits to Tartarus hosted VCS
tartarus-commits at lists.tartarus.org
Mon Jun 4 19:19:29 BST 2018
TL;DR:
10a4f11 Add a GDB Python script to pretty-print Bignum.
accb693 Add HTTP redirects for the Windows on Arm installers.
22d2c72 x11_get_auth_from_authfile: correct MAX_RECORD_SIZE.
Repository: https://git.tartarus.org/simon/putty.git
On the web: https://git.tartarus.org/?p=simon/putty.git
Branch updated: master
Committer: Simon Tatham <anakin at pobox.com>
Date: 2018-06-04 19:19:29
commit 10a4f1156c59d44ef146f1c4ec665785025b1057
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=10a4f1156c59d44ef146f1c4ec665785025b1057;hp=f4314b8d66f12b045ce22697fae4fd8df47bce58
Author: Simon Tatham <anakin at pobox.com>
Date: Mon Jun 4 19:10:57 2018 +0100
Add a GDB Python script to pretty-print Bignum.
I've been playing around with GDB's Python scripting system recently,
and this is a thing I've always thought it would be nice to be able to
do: if you load this script (which, on Ubuntu 18.04's gdb, is as
simple as 'source contrib/gdb.py' at the gdb prompt, or similar), then
variables of type Bignum will be printed as (e.g.) 'Bignum(0x12345)',
or 'Bignum(NULL)' if they're null pointers, or a fallback
representation if they're non-null pointers but gdb can't read
anything sensible from them.
contrib/gdb.py | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
commit accb6931ce7f49336436c7e51c577af2ed4c2d1f
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=accb6931ce7f49336436c7e51c577af2ed4c2d1f;hp=10a4f1156c59d44ef146f1c4ec665785025b1057
Author: Simon Tatham <anakin at pobox.com>
Date: Mon Jun 4 19:13:13 2018 +0100
Add HTTP redirects for the Windows on Arm installers.
There's always one - I did everything else in the build script, but
forgot to arrange for the wa32 and wa64 output subdirs to have a
.htaccess redirect from a fixed name like 'putty-arm64-installer.msi'
to whatever the real file name is in that particular build.
Buildscr | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
commit 22d2c721013ee229d154af43a074539e439ffbba
web diff https://git.tartarus.org/?p=simon/putty.git;a=commitdiff;h=22d2c721013ee229d154af43a074539e439ffbba;hp=accb6931ce7f49336436c7e51c577af2ed4c2d1f
Author: Simon Tatham <anakin at pobox.com>
Date: Mon Jun 4 19:14:33 2018 +0100
x11_get_auth_from_authfile: correct MAX_RECORD_SIZE.
I reset this to a very small value during testing, because my real
.Xauthority file is not absurdly enormous, so this was the easiest way
to check the algorithm that periodically moves everything up the
buffer.
Then that test found and fixed a bug, and of course my temporary test
value of MAX_RECORD_SIZE got swept up in the 'git commit -a --amend',
and pushed with the rest of the refactoring, and I didn't notice until
today.
x11fwd.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
More information about the tartarus-commits
mailing list