diff options
author | Gunter Knauf <gk@gknw.de> | 2008-01-24 14:14:34 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2008-01-24 14:14:34 +0000 |
commit | c93ba48da21dd27774c85293bb3b4e97631b831f (patch) | |
tree | 2f8a07efae3fb3f37f2c76a1c63658b1e2870399 | |
parent | e32251369893c8ed6d1b3da5aadd704abd93a56a (diff) |
use more correctly named define.
-rw-r--r-- | src/curl.rc | 2 | ||||
-rw-r--r-- | src/version.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/curl.rc b/src/curl.rc index a184a1500..fd29f1836 100644 --- a/src/curl.rc +++ b/src/curl.rc @@ -52,7 +52,7 @@ BEGIN VALUE "OriginalFilename", "curl.exe\0" VALUE "ProductName", "The cURL executable\0" VALUE "ProductVersion", CURL_VERSION "\0" - VALUE "LegalCopyright", "© " LIBCURL_COPYRIGHT "\0" + VALUE "LegalCopyright", "© " CURL_COPYRIGHT "\0" VALUE "License", "http://curl.haxx.se/docs/copyright.html\0" END END diff --git a/src/version.h b/src/version.h index f350c2942..8e9c2919d 100644 --- a/src/version.h +++ b/src/version.h @@ -26,6 +26,7 @@ #include <curl/curlver.h> #define CURL_NAME "curl" +#define CURL_COPYRIGHT LIBCURL_COPYRIGHT #define CURL_VERSION LIBCURL_VERSION #define CURL_VERSION_MAJOR LIBCURL_VERSION_MAJOR #define CURL_VERSION_MINOR LIBCURL_VERSION_MINOR |