diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2022-08-13 03:47:12 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2022-08-16 11:30:47 -0400 |
commit | ebe3fdb0e36b6fe8929e5fc90bbaf4e97f9cb962 (patch) | |
tree | 097237349e04b11fba67e68f2bfc7a7bd82ab07b | |
parent | 04427fc207953063ea608bf0715b12c106b159ef (diff) | |
download | curl-ebe3fdb0e36b6fe8929e5fc90bbaf4e97f9cb962.tar.gz |
KNOWN_BUGS: Windows Unicode builds use homedir in current locale
Bug: https://github.com/curl/curl/pull/7252
Reported-by: dEajL3kA@users.noreply.github.com
Ref: https://github.com/curl/curl/pull/7281
Closes https://github.com/curl/curl/pull/9305
-rw-r--r-- | docs/KNOWN_BUGS | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS index f7bb977d2..20cf43f4d 100644 --- a/docs/KNOWN_BUGS +++ b/docs/KNOWN_BUGS @@ -63,6 +63,7 @@ problems may have been fixed or changed somewhat since this was written. 5.11 configure --with-gssapi with Heimdal is ignored on macOS 5.12 flaky Windows CI builds 5.13 long paths are not fully supported on Windows + 5.14 Windows Unicode builds use homedir in current locale 6. Authentication 6.1 NTLM authentication and unicode @@ -554,6 +555,16 @@ problems may have been fixed or changed somewhat since this was written. See https://github.com/curl/curl/issues/8361 +5.14 Windows Unicode builds use homedir in current locale + + The Windows Unicode builds of curl use the current locale, but expect Unicode + UTF-8 encoded paths for internal use such as open, access and stat. The user's + home directory is retrieved via curl_getenv in the current locale and not as + UTF-8 encoded Unicode. + + See https://github.com/curl/curl/pull/7252 and + https://github.com/curl/curl/pull/7281 + 6. Authentication 6.1 NTLM authentication and unicode |