By default, curl uses an exponentially increasing timeout between retries.
-Staring in curl 8.16.0, this option accepts a time as decimal number for parts
+Starting in curl 8.16.0, this option accepts a time as decimal number for parts
of seconds. The decimal value needs to be provided using a dot (.) as decimal
separator - not the local version even if it might be using another separator.
single request's maximum time, use --max-time. Set this option to zero to not
timeout retries.
-Staring in curl 8.16.0, this option accepts a time as decimal number for parts
+Starting in curl 8.16.0, this option accepts a time as decimal number for parts
of seconds. The decimal value needs to be provided using a dot (.) as decimal
separator - not the local version even if it might be using another separator.
result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
(curl_off_t)ctx->blen);
if(result) {
- fprintf(stderr, "error staring frame: %d\n", result);
+ fprintf(stderr, "error starting frame: %d\n", result);
return CURL_READFUNC_ABORT;
}
}
result = curl_ws_start_frame(ctx->easy, CURLWS_TEXT,
(curl_off_t)ctx->msg_len);
if(result) {
- fprintf(stderr, "error staring frame: %d\n", result);
+ fprintf(stderr, "error starting frame: %d\n", result);
return CURL_READFUNC_ABORT;
}
}