From: Daniel Stenberg Date: Sun, 28 Mar 2004 21:41:10 +0000 (+0000) Subject: use the correct struct X-Git-Tag: c-ares-1_2_0~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b33a5f954c11d77c82ead15e3e5560ca8568c42;p=curl use the correct struct --- diff --git a/docs/examples/postit2.c b/docs/examples/postit2.c index a46f0a71b..d1ecadd61 100644 --- a/docs/examples/postit2.c +++ b/docs/examples/postit2.c @@ -33,8 +33,8 @@ int main(int argc, char *argv[]) CURL *curl; CURLcode res; - struct HttpPost *formpost=NULL; - struct HttpPost *lastptr=NULL; + struct curl_httppost *formpost=NULL; + struct curl_httppost *lastptr=NULL; struct curl_slist *headerlist=NULL; char buf[] = "Expect:";