pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/putty



Module Name:    pkgsrc
Committed By:   tnn
Date:           Thu Jan  2 17:24:58 UTC 2025

Modified Files:
        pkgsrc/security/putty: distinfo
Added Files:
        pkgsrc/security/putty/patches: patch-unix_window.c

Log Message:
putty: fix build


To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 pkgsrc/security/putty/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/security/putty/patches/patch-unix_window.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/putty/distinfo
diff -u pkgsrc/security/putty/distinfo:1.39 pkgsrc/security/putty/distinfo:1.40
--- pkgsrc/security/putty/distinfo:1.39 Thu Dec 12 15:29:09 2024
+++ pkgsrc/security/putty/distinfo      Thu Jan  2 17:24:57 2025
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.39 2024/12/12 15:29:09 ryoon Exp $
+$NetBSD: distinfo,v 1.40 2025/01/02 17:24:57 tnn Exp $
 
 BLAKE2s (putty-0.82.tar.gz) = 2c8c7dbe4004f5f67380e045779d98e37f72cc3ebf084b5409968878cbaaf1c6
 SHA512 (putty-0.82.tar.gz) = 591218d9e62a70f541abb995947f61d89bc24d7d0440a4bff3afa10a49e3ff62aca6200df2b5e921d2f1157ce7048ab2c6e9eee785d02d804ca6c5c152145552
 Size (putty-0.82.tar.gz) = 2944148 bytes
 SHA1 (patch-terminal.c) = 690d9021b14947ae24c68ecff6781ad255ab7a70
 SHA1 (patch-timing.c) = a6a492fc8b22c58e2973c854bffa4c8bf71eb6a7
+SHA1 (patch-unix_window.c) = 8b8556cb076bdfb1d15b7f365696b1617f9d0afe

Added files:

Index: pkgsrc/security/putty/patches/patch-unix_window.c
diff -u /dev/null pkgsrc/security/putty/patches/patch-unix_window.c:1.1
--- /dev/null   Thu Jan  2 17:24:58 2025
+++ pkgsrc/security/putty/patches/patch-unix_window.c   Thu Jan  2 17:24:57 2025
@@ -0,0 +1,15 @@
+$NetBSD: patch-unix_window.c,v 1.1 2025/01/02 17:24:57 tnn Exp $
+
+Fix compile error. length variable missing.
+
+--- unix/window.c.orig 2025-01-02 17:18:23.233993816 +0000
++++ unix/window.c
+@@ -2961,7 +2961,7 @@ static void clipboard_text_received(GtkC
+     if (!text)
+         return;
+ 
+-    paste = dup_mb_to_wc(CS_UTF8, text, length, &paste_len);
++    paste = dup_mb_to_wc_c(CS_UTF8, text, strlen(text), &paste_len);
+ 
+     term_do_paste(inst->term, paste, paste_len);
+ 



Home | Main Index | Thread Index | Old Index