CLEANUP: http-fetch: Remove duplcated return statement in smp_fetch_stver()

the return statement was needlessly repeated. Let's remove the second one.
This commit is contained in:
Christopher Faulet 2026-05-04 17:41:36 +02:00
parent 3fa0aa3664
commit e7482c4d0e

View File

@ -447,8 +447,6 @@ static int smp_fetch_stver(const struct arg *args, struct sample *smp, const cha
smp->data.type = SMP_T_STR;
smp->data.u.str = *vsn;
return 1;
return 1;
}
/* 3. Check on Status Code. We manipulate integers here. */