mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
virsh: getSignalNumber: rename variables
Use 'str' for the allocated copy of the string and 'p' for the pointer into that string. Signed-off-by: Ján Tomko <jtomko@redhat.com> Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
This commit is contained in:
parent
76b4cd88f5
commit
b6a8c9df4d
@ -8806,26 +8806,26 @@ static int getSignalNumber(vshControl *ctl, const char *signame)
|
||||
{
|
||||
size_t i;
|
||||
int signum;
|
||||
char *lower = vshStrdup(ctl, signame);
|
||||
char *tmp = lower;
|
||||
char *str = vshStrdup(ctl, signame);
|
||||
char *p = str;
|
||||
|
||||
for (i = 0; signame[i]; i++)
|
||||
lower[i] = c_tolower(signame[i]);
|
||||
p[i] = c_tolower(signame[i]);
|
||||
|
||||
if (virStrToLong_i(lower, NULL, 10, &signum) >= 0)
|
||||
if (virStrToLong_i(p, NULL, 10, &signum) >= 0)
|
||||
goto cleanup;
|
||||
|
||||
if (STRPREFIX(lower, "sig_"))
|
||||
lower += 4;
|
||||
else if (STRPREFIX(lower, "sig"))
|
||||
lower += 3;
|
||||
if (STRPREFIX(p, "sig_"))
|
||||
p += 4;
|
||||
else if (STRPREFIX(p, "sig"))
|
||||
p += 3;
|
||||
|
||||
if ((signum = virDomainProcessSignalTypeFromString(lower)) >= 0)
|
||||
if ((signum = virDomainProcessSignalTypeFromString(p)) >= 0)
|
||||
goto cleanup;
|
||||
|
||||
signum = -1;
|
||||
cleanup:
|
||||
VIR_FREE(tmp);
|
||||
VIR_FREE(str);
|
||||
return signum;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user