Merge upstream r509: don't log an error in the common case (ENOENT).
This commit is contained in:
parent
9a25ed673d
commit
8944658d90
@ -104,9 +104,11 @@ openpam_check_path_owner_perms(const char *path)
|
||||
len = strlen(pathbuf);
|
||||
while (len > 0) {
|
||||
if (stat(pathbuf, &sb) != 0) {
|
||||
serrno = errno;
|
||||
openpam_log(PAM_LOG_ERROR, "%s: %m", pathbuf);
|
||||
errno = serrno;
|
||||
if (errno != ENOENT) {
|
||||
serrno = errno;
|
||||
openpam_log(PAM_LOG_ERROR, "%s: %m", pathbuf);
|
||||
errno = serrno;
|
||||
}
|
||||
return (-1);
|
||||
}
|
||||
if ((sb.st_uid != root && sb.st_uid != arbitrator) ||
|
||||
|
Loading…
Reference in New Issue
Block a user