diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/util/find_uid.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/server/util/find_uid.c b/server/util/find_uid.c index 2fead50a..626d37f6 100644 --- a/server/util/find_uid.c +++ b/server/util/find_uid.c @@ -87,6 +87,11 @@ static errno_t get_uid_from_pid(const pid_t pid, uid_t *uid) ret = lstat(path, &stat_buf); if (ret == -1) { + if (errno == ENOENT) { + DEBUG(7, ("Proc file [%s] is not available anymore, continuing.\n", + path)); + return EOK; + } DEBUG(1, ("lstat failed [%d][%s].\n", errno, strerror(errno))); return errno; } @@ -98,6 +103,11 @@ static errno_t get_uid_from_pid(const pid_t pid, uid_t *uid) fd = open(path, O_RDONLY); if (fd == -1) { + if (errno == ENOENT) { + DEBUG(7, ("Proc file [%s] is not available anymore, continuing.\n", + path)); + return EOK; + } DEBUG(1, ("open failed [%d][%s].\n", errno, strerror(errno))); return errno; } |