From 5f60188b8adbe5055b0780df36caf3e209d06531 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 2 Sep 2004 20:42:44 +0000 Subject: [PATCH] use the correct struct name in the example --- docs/libcurl/curl_formadd.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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";