mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04: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
1 changed files with 11 additions and 0 deletions
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…
Add table
Reference in a new issue