head 1.5; access; symbols pkgsrc-2013Q2:1.3.0.28 pkgsrc-2013Q2-base:1.3 pkgsrc-2013Q1:1.3.0.26 pkgsrc-2013Q1-base:1.3 pkgsrc-2012Q4:1.3.0.24 pkgsrc-2012Q4-base:1.3 pkgsrc-2012Q3:1.3.0.22 pkgsrc-2012Q3-base:1.3 pkgsrc-2012Q2:1.3.0.20 pkgsrc-2012Q2-base:1.3 pkgsrc-2012Q1:1.3.0.18 pkgsrc-2012Q1-base:1.3 pkgsrc-2011Q4:1.3.0.16 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q3:1.3.0.14 pkgsrc-2011Q3-base:1.3 pkgsrc-2011Q2:1.3.0.12 pkgsrc-2011Q2-base:1.3 pkgsrc-2011Q1:1.3.0.10 pkgsrc-2011Q1-base:1.3 pkgsrc-2010Q4:1.3.0.8 pkgsrc-2010Q4-base:1.3 pkgsrc-2010Q3:1.3.0.6 pkgsrc-2010Q3-base:1.3 pkgsrc-2010Q2:1.3.0.4 pkgsrc-2010Q2-base:1.3 pkgsrc-2010Q1:1.3.0.2 pkgsrc-2010Q1-base:1.3 pkgsrc-2009Q4:1.2.0.2 pkgsrc-2009Q4-base:1.2 pkgsrc-2009Q3:1.1.0.16 pkgsrc-2009Q3-base:1.1 pkgsrc-2009Q2:1.1.0.14 pkgsrc-2009Q2-base:1.1 pkgsrc-2009Q1:1.1.0.12 pkgsrc-2009Q1-base:1.1 pkgsrc-2008Q4:1.1.0.10 pkgsrc-2008Q4-base:1.1 pkgsrc-2008Q3:1.1.0.8 pkgsrc-2008Q3-base:1.1 cube-native-xorg:1.1.0.6 cube-native-xorg-base:1.1 pkgsrc-2008Q2:1.1.0.4 pkgsrc-2008Q2-base:1.1 cwrapper:1.1.0.2; locks; strict; comment @# @; 1.5 date 2013.07.04.17.04.58; author wiz; state dead; branches; next 1.4; commitid TrXqHTtUEuImUaWw; 1.4 date 2013.07.03.08.19.53; author wiz; state Exp; branches; next 1.3; commitid E9qLK4ffjR0i20Ww; 1.3 date 2010.02.22.17.19.09; author drochner; state Exp; branches; next 1.2; 1.2 date 2009.12.15.19.50.47; author drochner; state dead; branches; next 1.1; 1.1 date 2008.04.25.15.16.31; author smb; state Exp; branches; next ; desc @@ 1.5 log @Remove patch-aa. drochner, who added it, isn't sure it's needed any longer. Bump PKGREVISION. @ text @$NetBSD: patch-aa,v 1.4 2013/07/03 08:19:53 wiz Exp $ fix a problem with the curses widget and non-UTF8 locales: keys which used less bytes in the system encoding than in the UTF8 passed to the caller caused that the passphrase got truncated because only the input length was accounted for --- pinentry/pinentry-curses.c.orig 2009-04-16 15:06:53.000000000 +0000 +++ pinentry/pinentry-curses.c @@@@ -819,8 +819,10 @@@@ dialog_run (pinentry_t pinentry, const c if (pin_utf8) { pinentry_setbufferlen (pinentry, strlen (pin_utf8) + 1); - if (pinentry->pin) + if (pinentry->pin) { strcpy (pinentry->pin, pin_utf8); + diag.pin_len = strlen (pin_utf8); + } secmem_free (pin_utf8); pinentry->locale_err = 0; } @ 1.4 log @Add comment to patch, from cvs log. @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.3 2010/02/22 17:19:09 drochner Exp $ @ 1.3 log @fix a problem with the curses widget and non-UTF8 locales: keys which used less bytes in the system encoding than in the UTF8 passed to the caller caused that the passphrase got truncated because only the input length was accounted for bump PKGREVISION @ text @d1 6 a6 1 $NetBSD$ @ 1.2 log @update to 0.7.6 changes: misc improvements reviewed by John R. Shannon @ text @d1 1 a1 1 $NetBSD: patch-aa,v 1.1 2008/04/25 15:16:31 smb Exp $ d3 14 a16 29 --- gtk+-2/gtksecentry.c.orig 2008-04-25 11:08:48.000000000 -0400 +++ gtk+-2/gtksecentry.c 2008-04-25 11:09:36.000000000 -0400 @@@@ -270,7 +270,7 @@@@ gpointer -g_malloc(gulong size) +g_malloc(gsize size) { gpointer p; @@@@ -288,7 +288,7 @@@@ } gpointer -g_malloc0(gulong size) +g_malloc0(gsize size) { gpointer p; @@@@ -308,7 +308,7 @@@@ } gpointer -g_realloc(gpointer mem, gulong size) +g_realloc(gpointer mem, gsize size) { gpointer p; @ 1.1 log @Fix function prototype mismatch @ text @d1 1 a1 1 $NetBSD$ @