fix Pid.PidFile
This commit is contained in:
parent
eec869f6d7
commit
c7089edade
|
@ -686,8 +686,8 @@ static int ptql_pid_get(sigar_t *sigar,
|
||||||
if (status != SIGAR_OK) {
|
if (status != SIGAR_OK) {
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
*pid = strtoull(buffer, &ptr, 10);
|
*pid = str2pid(buffer, ptr);
|
||||||
if (strtonum_failed(buffer, ptr)) {
|
if ((buffer == ptr) || (errno == ERANGE)) {
|
||||||
return errno;
|
return errno;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue