diff options
author | Daniel Stenberg <daniel@haxx.se> | 2021-09-24 23:31:58 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2021-09-26 23:10:03 +0200 |
commit | 1ca62bb5ce3f37174d4bf3f9f70674c4af4396df (patch) | |
tree | 001ef3750b7faf55f89c651b3055171ed5a93ce5 /lib | |
parent | 4a10a99ef03bc6ad2b01546f95c8a23435c23f94 (diff) | |
download | curl-1ca62bb5ce3f37174d4bf3f9f70674c4af4396df.tar.gz |
libcurl.rc: switch out the copyright symbol for plain ASCII
Reported-by: Vitaly Varyvdin
Assisted-by: Viktor Szakats
Fixes #7765
Closes #7776
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcurl.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcurl.rc b/lib/libcurl.rc index 3f7ae1603..fde6c8cae 100644 --- a/lib/libcurl.rc +++ b/lib/libcurl.rc @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -51,7 +51,7 @@ BEGIN VALUE "OriginalFilename", "libcurl.dll\0" VALUE "ProductName", "The curl library\0" VALUE "ProductVersion", LIBCURL_VERSION "\0" - VALUE "LegalCopyright", "\xa9 " LIBCURL_COPYRIGHT "\0" /* a9: Copyright symbol */ + VALUE "LegalCopyright", "Copyright (C) " LIBCURL_COPYRIGHT "\0" VALUE "License", "https://curl.se/docs/copyright.html\0" END END |