Skip to content

Commit

Permalink
curl.rc: switch out the copyright symbol for plain ASCII
Browse files Browse the repository at this point in the history
.. like we already do for libcurl.rc.

libcurl.rc copyright symbol used to cause a "non-ascii 8-bit codepoint"
warning so it was switched to ascii.

Ref: curl@1ca62bb5#commitcomment-133474972

Suggested-by: Robert Southee

Closes curl#12403
  • Loading branch information
jay committed Nov 26, 2023
1 parent dbf4c40 commit 1b04dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/curl.rc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ BEGIN
VALUE "OriginalFilename", "curl.exe\0"
VALUE "ProductName", "The curl executable\0"
VALUE "ProductVersion", CURL_VERSION "\0"
VALUE "LegalCopyright", "\xa9 " CURL_COPYRIGHT "\0" /* a9: Copyright symbol */
VALUE "LegalCopyright", "Copyright (C) " CURL_COPYRIGHT "\0"
VALUE "License", "https://curl.se/docs/copyright.html\0"
END
END
Expand Down

0 comments on commit 1b04dfa

Please sign in to comment.