[svn] GnuPG - r4506 - trunk/g10

svn author marcus cvs at cvs.gnupg.org
Sat May 19 01:33:21 CEST 2007


Author: marcus
Date: 2007-05-19 01:32:51 +0200 (Sat, 19 May 2007)
New Revision: 4506

Modified:
   trunk/g10/ChangeLog
   trunk/g10/passphrase.c
Log:
2007-05-19  Marcus Brinkmann  <marcus at g10code.de>

	* passphrase.c (passphrase_get): Use PACKAGE_GT, not PACKAGE.


Modified: trunk/g10/ChangeLog
===================================================================
--- trunk/g10/ChangeLog	2007-05-18 22:58:59 UTC (rev 4505)
+++ trunk/g10/ChangeLog	2007-05-18 23:32:51 UTC (rev 4506)
@@ -1,5 +1,7 @@
 2007-05-19  Marcus Brinkmann  <marcus at g10code.de>
 
+	* passphrase.c (passphrase_get): Use PACKAGE_GT, not PACKAGE.
+
 	* passphrase.c (passphrase_get): Free ORIG_CODESET on error.
 
 2007-05-16  Werner Koch  <wk at g10code.com>

Modified: trunk/g10/passphrase.c
===================================================================
--- trunk/g10/passphrase.c	2007-05-18 22:58:59 UTC (rev 4505)
+++ trunk/g10/passphrase.c	2007-05-18 23:32:51 UTC (rev 4506)
@@ -281,7 +281,7 @@
   
 #ifdef ENABLE_NLS
   /* The Assuan agent protocol requires us to transmit utf-8 strings */
-  orig_codeset = bind_textdomain_codeset (PACKAGE, NULL);
+  orig_codeset = bind_textdomain_codeset (PACKAGE_GT, NULL);
 #ifdef HAVE_LANGINFO_CODESET
   if (!orig_codeset)
     orig_codeset = nl_langinfo (CODESET);
@@ -396,7 +396,7 @@
 #ifdef ENABLE_NLS
   if (orig_codeset)
     {
-      bind_textdomain_codeset (PACKAGE, orig_codeset);
+      bind_textdomain_codeset (PACKAGE_GT, orig_codeset);
       xfree (orig_codeset);
     }
 #endif




More information about the Gnupg-commits mailing list