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:
parent
1e7895ec5f
commit
48d77d5510
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=131862
11
www/osb-nrcit/files/patch-src::HttpCurl.cpp
Normal file
11
www/osb-nrcit/files/patch-src::HttpCurl.cpp
Normal 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);
|
Loading…
Reference in New Issue
Block a user