From e67e71d62b6e3f90678631004a6c267ca72df1cd Mon Sep 17 00:00:00 2001 From: Sam Roth Date: Tue, 18 Aug 2015 14:42:18 -0500 Subject: CURLMOPT_PUSHFUNCTION.3: fix argument types Closes #389 Closes #386 --- docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 b/docs/libcurl/opts/CURLMOPT_PUSHFUNCTION.3 index d0468ec15..033f71a72 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, -- cgit v1.2.3