Skip to content

Commit

Permalink
Ticket: 6286
Browse files Browse the repository at this point in the history
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21290 dc483132-0cff-0310-8789-dd5450dbe970
  • Loading branch information
tsitkov committed Dec 5, 2008
1 parent ad22ac6 commit 16f60c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/profile/prof_init.c
Expand Up @@ -42,7 +42,7 @@ profile_init(const_profile_filespec_t *files, profile_t *ret_profile)
for (fs = files; !PROFILE_LAST_FILESPEC(*fs); fs++) {
retval = profile_open_file(*fs, &new_file);
/* if this file is missing, skip to the next */
if (retval == ENOENT || retval == EACCES) {
if (retval == ENOENT || retval == EACCES || retval == EPERM) {
continue;
}
if (retval) {
Expand Down

0 comments on commit 16f60c5

Please sign in to comment.