summaryrefslogtreecommitdiff
path: root/security/putty/patches/patch-ak
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2005-04-06 21:51:13 +0000
committerxtraeme <xtraeme>2005-04-06 21:51:13 +0000
commitd44161b0aa43095cf7980041a81e16e98fbc338f (patch)
tree135923230c4affb655655ad104ee774424316f59 /security/putty/patches/patch-ak
parent9ce787b98755ac059e2d77555f5ad5185b20c9ec (diff)
downloadpkgsrc-d44161b0aa43095cf7980041a81e16e98fbc338f.tar.gz
Update to 0.58.
Changes: # Wildcards (mput/mget) and recursive file transfer in PSFTP. # You can now save your session details from the Change Settings dialog box, after you've started your session. # Various improvements to Unicode support, including: * support for right-to-left and bidirectional text (Arabic, Hebrew etc). Thanks to arabeyes.org for design and most of the implementation. * support for Arabic text shaping, again thanks to arabeyes.org. * support for Unicode combining characters. # Support for the xterm 256-colour control sequences. # Port forwardings can now be reconfigured in mid-session. # Support for IPv6. Thanks to unfix.org for having patiently maintained the patch for this until we were finally ready to integrate it. # More configurability and flexibility in SSH-2 key exchange. In particular, PuTTY can now initiate repeat key exchange during the session, which means that if your server doesn't initiate it (OpenSSH is known not to bother) you can still have the cryptographic benefits. # Bug fix: display artefacts caused by characters overflowing their character cell should now all be gone. (This would probably have bothered Windows ClearType users more than anyone else.) # Bug fix: keepalives are now supported everywhere. (Previously they were supported by Windows GUI PuTTY, but were missing in Plink, PSFTP and the Unix port.) # Miscellaneous improvements for CJK/IME users; many thanks to Hung-Te Lin for assistance.
Diffstat (limited to 'security/putty/patches/patch-ak')
-rw-r--r--security/putty/patches/patch-ak25
1 files changed, 25 insertions, 0 deletions
diff --git a/security/putty/patches/patch-ak b/security/putty/patches/patch-ak
new file mode 100644
index 00000000000..043f2b37f1c
--- /dev/null
+++ b/security/putty/patches/patch-ak
@@ -0,0 +1,25 @@
+$NetBSD: patch-ak,v 1.1 2005/04/06 21:51:13 xtraeme Exp $
+
+--- ../import.c.orig 2005-04-05 21:37:51.000000000 +0200
++++ ../import.c 2005-04-06 23:39:12.000000000 +0200
+@@ -681,7 +681,10 @@
+ int outlen;
+ struct mpint_pos numbers[9];
+ int nnumbers, pos, len, seqlen, i;
++ nnumbers = pos = len = seqlen = i = 0;
+ char *header, *footer;
++ footer = header = NULL;
++
+ char zero[1];
+ unsigned char iv[8];
+ int ret = 0;
+@@ -1442,7 +1445,8 @@
+ int outlen;
+ struct mpint_pos numbers[6];
+ int nnumbers, initial_zero, pos, lenpos, i;
+- char *type;
++ nnumbers = initial_zero = pos = lenpos = i = 0;
++ char *type = NULL;
+ char *ciphertext;
+ int cipherlen;
+ int ret = 0;