diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2005-03-22 03:47:28 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2005-03-22 03:47:28 +0000 |
commit | 48d77d5510a36598c67df87b71a1b7063795c76e (patch) | |
tree | c5290859ab34e29613b6a04c8a7d7eeb58fc260b /www/osb-nrcit | |
parent | 1e7895ec5f0d12c8d48d663790f87a9980483e94 (diff) |
- Fix pointer to pointer build failure
Approved by: portmgr (kris)
Notes
Notes:
svn path=/head/; revision=131862
Diffstat (limited to 'www/osb-nrcit')
-rw-r--r-- | www/osb-nrcit/files/patch-src::HttpCurl.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/osb-nrcit/files/patch-src::HttpCurl.cpp b/www/osb-nrcit/files/patch-src::HttpCurl.cpp new file mode 100644 index 000000000000..8bf4cf79b87a --- /dev/null +++ b/www/osb-nrcit/files/patch-src::HttpCurl.cpp @@ -0,0 +1,11 @@ +--- src/HttpCurl.cpp.orig Mon Mar 21 22:11:12 2005 ++++ src/HttpCurl.cpp Mon Mar 21 22:11:37 2005 +@@ -113,7 +113,7 @@ + + curl_version_info_data *curl_info; + curl_info = curl_version_info(CURLVERSION_NOW); +- curl_protocols = curl_info->protocols; ++ curl_protocols = (const char **)curl_info->protocols; + + FD_ZERO(&fdread); + FD_ZERO(&fdwrite); |