start-stop-daemon now works with userids correctly when a pidfile

is not specified, #191206.
This commit is contained in:
Roy Marples
2007-09-04 09:32:36 +00:00
parent 52f7df0d0c
commit eb5b1c4c41
2 changed files with 6 additions and 1 deletions

View File

@@ -118,7 +118,7 @@ pid_t *rc_find_pids (const char *exec, const char *cmd,
continue;
if (uid) {
snprintf (buffer, sizeof (buffer), "/proc/%d", pid);
snprintf (buffer, sizeof (buffer), "/proc/%d", p);
if (stat (buffer, &sb) != 0 || sb.st_uid != uid)
continue;
}