1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

- Fix pointer to pointer build failure

Approved by:	portmgr (kris)
This commit is contained in:
Michael Johnson 2005-03-22 03:47:28 +00:00
parent 1e7895ec5f
commit 48d77d5510
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=131862

View File

@ -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);