diff options
author | lofi <lofi@FreeBSD.org> | 2005-03-23 16:40:21 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2005-03-23 16:40:21 +0800 |
commit | f96883baadcfc7cbad5d21d5c17f0d45b2b39b9b (patch) | |
tree | 00cdd05f4d190d368fd735c3659af859c8be6a17 /security | |
parent | 3cf68817387212b1b941feea71a7cbb50cff4050 (diff) | |
download | freebsd-ports-gnome-f96883baadcfc7cbad5d21d5c17f0d45b2b39b9b.tar.gz freebsd-ports-gnome-f96883baadcfc7cbad5d21d5c17f0d45b2b39b9b.tar.zst freebsd-ports-gnome-f96883baadcfc7cbad5d21d5c17f0d45b2b39b9b.zip |
Fix a bug that prevents gpgsm from opening pinentry.
Reported by: Jie Gao <gaoj@cpsc.ucalgary.ca>
Obtained from: gnupg CVS
Approved by: portmgr (K.P.)
Diffstat (limited to 'security')
-rw-r--r-- | security/gnupg-devel/Makefile | 2 | ||||
-rw-r--r-- | security/gnupg-devel/files/patch-common-asshelp.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/security/gnupg-devel/Makefile b/security/gnupg-devel/Makefile index aa882ce3310d..d8c5fb884937 100644 --- a/security/gnupg-devel/Makefile +++ b/security/gnupg-devel/Makefile @@ -7,7 +7,7 @@ PORTNAME= gnupg PORTVERSION= 1.9.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= alpha/gnupg diff --git a/security/gnupg-devel/files/patch-common-asshelp.c b/security/gnupg-devel/files/patch-common-asshelp.c new file mode 100644 index 000000000000..2476103929d2 --- /dev/null +++ b/security/gnupg-devel/files/patch-common-asshelp.c @@ -0,0 +1,11 @@ +--- common/asshelp.c.orig Wed Mar 23 09:28:16 2005 ++++ common/asshelp.c Wed Mar 23 09:29:10 2005 +@@ -150,7 +150,7 @@ + #endif + if (opt_lc_messages || (dft_ttyname && dft_lc)) + { +- err = send_one_option (ctx, errsource, "display", ++ err = send_one_option (ctx, errsource, "lc-messages", + opt_lc_messages ? opt_lc_messages : dft_lc); + } + #if defined(HAVE_SETLOCALE) && defined(LC_MESSAGES) |