mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
virsh: Improve handling of send-process-signal --pid.
Use vshCommandOptLongLong() instead of retrieving the value as a string and converting it to a number manually.
This commit is contained in:
parent
2f4a45a25e
commit
8e2c5940cd
@ -8262,7 +8262,6 @@ cmdSendProcessSignal(vshControl *ctl, const vshCmd *cmd)
|
||||
{
|
||||
virDomainPtr dom;
|
||||
bool ret = false;
|
||||
const char *pidstr;
|
||||
const char *signame;
|
||||
long long pid_value;
|
||||
int signum;
|
||||
@ -8270,17 +8269,16 @@ cmdSendProcessSignal(vshControl *ctl, const vshCmd *cmd)
|
||||
if (!(dom = vshCommandOptDomain(ctl, cmd, NULL)))
|
||||
return false;
|
||||
|
||||
if (vshCommandOptStringReq(ctl, cmd, "pid", &pidstr) < 0)
|
||||
if (vshCommandOptLongLong(cmd, "pid", &pid_value) < 0) {
|
||||
vshError(ctl,
|
||||
_("Numeric value for <%s> option is malformed or out of range"),
|
||||
"pid");
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (vshCommandOptStringReq(ctl, cmd, "signame", &signame) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (virStrToLong_ll(pidstr, NULL, 10, &pid_value) < 0) {
|
||||
vshError(ctl, _("malformed PID value: %s"), pidstr);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if ((signum = getSignalNumber(ctl, signame)) < 0) {
|
||||
vshError(ctl, _("malformed signal name: %s"), signame);
|
||||
goto cleanup;
|
||||
|
Loading…
x
Reference in New Issue
Block a user