A patch from Takeharu KATO to update/fix SE-Linux support.
This commit is contained in:
@ -45,11 +45,8 @@ extern long* find_pid_by_name( const char* pidName)
|
||||
procps_status_t * p;
|
||||
|
||||
pidList = xmalloc(sizeof(long));
|
||||
#ifdef CONFIG_SELINUX
|
||||
while ((p = procps_scan(0, 0, NULL)) != 0) {
|
||||
#else
|
||||
while ((p = procps_scan(0)) != 0) {
|
||||
#endif
|
||||
while ((p = procps_scan(0)) != 0)
|
||||
{
|
||||
if (strncmp(p->short_cmd, pidName, COMM_LEN-1) == 0) {
|
||||
pidList=xrealloc( pidList, sizeof(long) * (i+2));
|
||||
pidList[i++]=p->pid;
|
||||
|
Reference in New Issue
Block a user