From: Sam Roth Date: Tue, 18 Aug 2015 19:42:18 +0000 (-0500) Subject: CURLMOPT_PUSHFUNCTION.3: fix argument types X-Git-Tag: curl-7_45_0~123 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e67e71d62b6e3f90678631004a6c267ca72df1cd;p=thirdparty%2Fcurl.git CURLMOPT_PUSHFUNCTION.3: fix argument types Closes #389 Closes #386 --- diff --git a/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 b/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 index d0468ec15e..033f71a722 100644 --- a/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 +++ b/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 @@ -27,8 +27,8 @@ CURLMOPT_PUSHFUNCTION \- callback that approves or denies server pushes .nf #include -char *curl_pushheader_bynum(push_headers, int num); -char *curl_pushheader_byname(push_headers, const char *name); +char *curl_pushheader_bynum(struct curl_pushheaders *h, size_t num); +char *curl_pushheader_byname(struct curl_pushheaders *h, const char *name); int curl_push_callback(CURL *parent, CURL *easy,