diff options
author | Werner Koch <[email protected]> | 2023-09-18 09:26:56 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2023-09-18 09:26:56 +0000 |
commit | 2a2846959f11053cb63c48626d6eda333868d033 (patch) | |
tree | 80cd7538b6e9005cf53223b1ef14d5c4cae14d9e /g10/gpg.c | |
parent | gpg: Add --list-filter properties sig_expires/sig_expires_d (diff) | |
download | gnupg-2a2846959f11053cb63c48626d6eda333868d033.tar.gz gnupg-2a2846959f11053cb63c48626d6eda333868d033.zip |
gpg: Fix --no-utf8-strings.
* g10/gpg.c (main): Ignore --no-utf8-strings only on Windows.
--
Fixes-commit: 8c41b8aac3efb78178fe1eaf52d8d1bbc44941a8
Reported-by: Ingo Klöcker
Diffstat (limited to 'g10/gpg.c')
-rw-r--r-- | g10/gpg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3489,7 +3489,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; |