summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubos Kardos <lkardos@redhat.com>2016-05-23 10:19:39 +0200
committerLubos Kardos <lkardos@redhat.com>2016-05-23 10:19:39 +0200
commit258e3065687c9e6b53b6f2b6c7fa6c5694508791 (patch)
tree8015ab27ada0e0a2aa940db916aa38387aca76d8
parent5d5dd569d01300db833e434ff49beb8b22627310 (diff)
downloadrpm-258e3065687c9e6b53b6f2b6c7fa6c5694508791.tar.gz
Fix signing with non-ASCII uid keys (rhbz:1243963)
Removed setting LC_ALL to "C" because since commit [1] the gpg program gets password by yourself from terminal so there is no sense in setting LC_ALL to "C" if the terminal settings is e. g. UTF-8. That was only confusing gpg program and it was not able to properly get and display non-ASCII characters. [1] 0bce5fcf270711a2e077fba0fb7c5979ea007eb5
-rw-r--r--sign/rpmgensig.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sign/rpmgensig.c b/sign/rpmgensig.c
index 2310f14a4..321d19c12 100644
--- a/sign/rpmgensig.c
+++ b/sign/rpmgensig.c
@@ -267,7 +267,6 @@ static int runGPG(sigTarget sigt, const char *sigfile)
if (gpg_path && *gpg_path != '\0')
(void) setenv("GNUPGHOME", gpg_path, 1);
- (void) setenv("LC_ALL", "C", 1);
unsetenv("MALLOC_CHECK_");
cmd = rpmExpand("%{?__gpg_sign_cmd}", NULL);