unit1658: rename CURLcode to result

Closes #21356
This commit is contained in:
Viktor Szakats 2026-04-17 13:17:17 +02:00
parent 1701a8319e
commit a06fd64974
No known key found for this signature in database

View file

@ -42,11 +42,11 @@ static CURLcode t1658_setup(void)
*/
static char rrbuffer[256];
static void rrresults(struct Curl_https_rrinfo *rr, CURLcode res)
static void rrresults(struct Curl_https_rrinfo *rr, CURLcode result)
{
char *p = rrbuffer;
const char *pend = rrbuffer + sizeof(rrbuffer);
curl_msnprintf(rrbuffer, sizeof(rrbuffer), "r:%d|", (int)res);
curl_msnprintf(rrbuffer, sizeof(rrbuffer), "r:%d|", (int)result);
p += strlen(rrbuffer);
if(rr) {