mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-18 14:17:03 +01:00
w32: Use utf8 for the asctimestamp function.
* common/gettime.c (asctimestamp) [W32]: Use ".UTF8" for the locale. -- This has been suggested by the reporter of GnuPG-bug-id: 6741
This commit is contained in:
parent
92af3f88a9
commit
ad2d578cba
5
NEWS
5
NEWS
@ -29,6 +29,9 @@ Noteworthy changes in version 2.2.42 (unreleased)
|
|||||||
* gpg: Allow to specify seconds since Epoch beyond 2038 on 32-bit
|
* gpg: Allow to specify seconds since Epoch beyond 2038 on 32-bit
|
||||||
platforms. [T6736]
|
platforms. [T6736]
|
||||||
|
|
||||||
|
* gpg: Fix the "keytocard" command for moving ECC keys with
|
||||||
|
non-standard ECDH parameters to OpenPGP cards. [rG92af3f88a9]
|
||||||
|
|
||||||
* gpgsm: Support ECC certificates. [T6253]
|
* gpgsm: Support ECC certificates. [T6253]
|
||||||
|
|
||||||
* gpgsm: Print PROGRESS status lines. Add new --input-size-hint.
|
* gpgsm: Print PROGRESS status lines. Add new --input-size-hint.
|
||||||
@ -65,6 +68,8 @@ Noteworthy changes in version 2.2.42 (unreleased)
|
|||||||
* wkd: Make --add-revocs the default in gpg-wks-client. New option
|
* wkd: Make --add-revocs the default in gpg-wks-client. New option
|
||||||
--no-add-revocs. [rG67d57fae3f]
|
--no-add-revocs. [rG67d57fae3f]
|
||||||
|
|
||||||
|
* Fix garbled time output in non-English Windows. [T6741]
|
||||||
|
|
||||||
* Ignore attempts to remove the /dev/null device. [T6556]
|
* Ignore attempts to remove the /dev/null device. [T6556]
|
||||||
|
|
||||||
* Improve advisory file lock retry strategy. [rG45a1ab5017]
|
* Improve advisory file lock retry strategy. [rG45a1ab5017]
|
||||||
|
@ -890,7 +890,7 @@ asctimestamp (u32 stamp)
|
|||||||
* 2018 has a lot of additional support but that will for sure
|
* 2018 has a lot of additional support but that will for sure
|
||||||
* break other things. We should move to ISO strings to get
|
* break other things. We should move to ISO strings to get
|
||||||
* rid of such problems. */
|
* rid of such problems. */
|
||||||
setlocale (LC_TIME, "");
|
setlocale (LC_TIME, ".UTF8");
|
||||||
done = 1;
|
done = 1;
|
||||||
/* log_debug ("LC_ALL now '%s'\n", setlocale (LC_ALL, NULL)); */
|
/* log_debug ("LC_ALL now '%s'\n", setlocale (LC_ALL, NULL)); */
|
||||||
/* log_debug ("LC_TIME now '%s'\n", setlocale (LC_TIME, NULL)); */
|
/* log_debug ("LC_TIME now '%s'\n", setlocale (LC_TIME, NULL)); */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user