diff --git a/landerctl/src/post.c b/landerctl/src/post.c index 76e5b04..ecdbdc1 100644 --- a/landerctl/src/post.c +++ b/landerctl/src/post.c @@ -99,6 +99,7 @@ landerctl_err landerctl_post_file(landerctl_ctx *ctx) { curl_easy_setopt(ctx->curl, CURLOPT_POST, 1L); curl_easy_setopt(ctx->curl, CURLOPT_READDATA, ctx->data_file); curl_easy_setopt(ctx->curl, CURLOPT_POSTFIELDSIZE_LARGE, sb.st_size); + curl_easy_setopt(ctx->curl, CURLOPT_NOPROGRESS, 0L); magic_t cookie = magic_open(MAGIC_MIME_TYPE); magic_load(cookie, NULL);