From: Daniel Stenberg Date: Thu, 2 Sep 2004 20:42:44 +0000 (+0000) Subject: use the correct struct name in the example X-Git-Tag: curl-7_12_2~140 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5f60188b8adbe5055b0780df36caf3e209d06531;p=curl use the correct struct name in the example --- diff --git a/docs/libcurl/curl_formadd.3 b/docs/libcurl/curl_formadd.3 index 366e6b07f..c8055afb9 100644 --- a/docs/libcurl/curl_formadd.3 +++ b/docs/libcurl/curl_formadd.3 @@ -129,8 +129,8 @@ defines. .SH EXAMPLE .nf - struct HttpPost* post = NULL; - struct HttpPost* last = NULL; + struct curl_httppost* post = NULL; + struct curl_httppost* last = NULL; char namebuffer[] = "name buffer"; long namelength = strlen(namebuffer); char buffer[] = "test buffer";