aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@broadpark.no>2008-08-17 13:55:24 +0000
committerGisle Vanem <gvanem@broadpark.no>2008-08-17 13:55:24 +0000
commit95a093e97b4c1f61248872571ea9704d0b899095 (patch)
tree64a6e50ae29a567922cf1cfe34becb99df1ad2bc
parent68bb51c55b4baecb19e61c8e960ce6c2a02c8ebf (diff)
Replace 'HttpPost' with 'curl_httppost'.
-rw-r--r--include/curl/curl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h
index b7555e0be..c9a763537 100644
--- a/include/curl/curl.h
+++ b/include/curl/curl.h
@@ -658,7 +658,7 @@ typedef enum {
/* This points to a linked list of headers, struct curl_slist kind */
CINIT(HTTPHEADER, OBJECTPOINT, 23),
- /* This points to a linked list of post entries, struct HttpPost */
+ /* This points to a linked list of post entries, struct curl_httppost */
CINIT(HTTPPOST, OBJECTPOINT, 24),
/* name of the file keeping your private SSL-certificate */
@@ -1284,7 +1284,7 @@ struct curl_forms {
* CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed
* CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used
* CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or error)
- * CURL_FORMADD_MEMORY if a HttpPost struct cannot be allocated
+ * CURL_FORMADD_MEMORY if a curl_httppost struct cannot be allocated
* CURL_FORMADD_MEMORY if some allocation for string copying failed.
* CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array
*