1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-13 00:09:51 +02:00

gpg: Fix --no-utf8-strings.

* g10/gpg.c (main): Ignore --no-utf8-strings only on Windows.
--

Fixes-commit: b912f07cdf
Reported-by: Ingo Klöcker
This commit is contained in:
Werner Koch 2023-09-18 11:26:56 +02:00
parent 936954a18a
commit de84c58d90
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B

View File

@ -3384,7 +3384,7 @@ main (int argc, char **argv)
break;
case oUtf8Strings: utf8_strings = 1; break;
case oNoUtf8Strings:
#ifdef HAVE_W32_SYSTEM
#ifndef HAVE_W32_SYSTEM
utf8_strings = 0;
#endif
break;