diff options
| author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-01-19 11:35:48 +0000 | 
|---|---|---|
| committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-01-19 11:35:48 +0000 | 
| commit | df86db7deeb0a5ffc764c83dd19b1344c5b0f5c9 (patch) | |
| tree | 6dcf62402fb761d8ba9fb4b70850c27f7fd147b3 /lib | |
| parent | f1261b1253c57e1e3257ddba5d039475fcda90b7 (diff) | |
*.rc: escape non-ASCII/non-UTF-8 character for clarity
Closes https://github.com/curl/curl/pull/1217
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 c1efbadc6..3316fba19 100644 --- a/lib/libcurl.rc +++ b/lib/libcurl.rc @@ -5,7 +5,7 @@   *                            | (__| |_| |  _ <| |___   *                             \___|\___/|_| \_\_____|   * - * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2017, 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",   "© " LIBCURL_COPYRIGHT "\0" +      VALUE "LegalCopyright",   "\xa9 " LIBCURL_COPYRIGHT "\0"  /* a9: Copyright symbol */        VALUE "License",          "https://curl.haxx.se/docs/copyright.html\0"      END    END | 
