From 8cf9ee30f188513f9b3c5730c9559c9c7f075dbc Mon Sep 17 00:00:00 2001 From: qorg11 Date: Fri, 30 Apr 2021 19:07:48 +0200 Subject: [PATCH] Remove postfieldsize --- src/post.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/post.c b/src/post.c index 203bea3..005ee52 100644 --- a/src/post.c +++ b/src/post.c @@ -69,7 +69,6 @@ post_status(const char *status, const char *scope) sprintf(status_to_post,status_fmt,status); sprintf(visibility_to_post,scope_fmt,scope); - curl_easy_setopt(curl,CURLOPT_POSTFIELDSIZE,12L); curl_easy_setopt(curl,CURLOPT_POSTFIELDS,status_to_post); curl_easy_perform(curl);